10 lines
220 B
Python
10 lines
220 B
Python
|
|
from Constraint import Constraint
|
|
|
|
class Horizontal(Constraint):
|
|
def __init__(self, shape1, pt1, shape2, pt2):
|
|
self.shape1 = shape1
|
|
self.pt1 = pt1
|
|
self.shape2 = shape2
|
|
self.pt2 = pt2
|