From 1021ff3e599a51b6bfbacfefe947b3bd8360c324 Mon Sep 17 00:00:00 2001 From: Josh Holtrop Date: Mon, 28 Mar 2011 18:27:46 -0400 Subject: [PATCH] remove Distance --- Distance.py | 11 ----------- 1 file changed, 11 deletions(-) delete mode 100644 Distance.py diff --git a/Distance.py b/Distance.py deleted file mode 100644 index 7a26173..0000000 --- a/Distance.py +++ /dev/null @@ -1,11 +0,0 @@ - -from Constraint import Constraint - -class Distance(Constraint): - def __init__(self, shape1, pt1, shape2, pt2, direction, dist): - self.shape1 = shape1 - self.pt1 = pt1 - self.shape2 = shape2 - self.pt2 = pt2 - self.dist = dist - self.direction = direction