mv EqualConstraint to Equal
This commit is contained in:
parent
c13fc5ad93
commit
b0ae18f9d1
9
Equal.py
Normal file
9
Equal.py
Normal 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
|
@ -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
|
|
Loading…
x
Reference in New Issue
Block a user