mv EqualConstraint to Equal

This commit is contained in:
Josh Holtrop 2011-03-28 18:18:01 -04:00
parent c13fc5ad93
commit b0ae18f9d1
2 changed files with 9 additions and 9 deletions

9
Equal.py Normal file
View File

@ -0,0 +1,9 @@
from Constraint import Constraint
class Equal(Constraint):
def __init__(self, shape1, pt1, shape2, pt2):
self.shape1 = shape1
self.shape2 = shape2
self.pt1 = pt1
self.pt2 = pt2

View File

@ -1,9 +0,0 @@
from Constraint import Constraint
class EqualConstraint(Constraint):
def __init__(self, shape1, attr1, shape2, attr2):
self.shape1 = shape1
self.shape2 = shape2
self.attr1 = attr1
self.attr2 = attr2