add Horizontal and Vertical constraint classes
This commit is contained in:
parent
f1282e6cb6
commit
4932447df9
6
Horizontal.py
Normal file
6
Horizontal.py
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
from Constraint import Constraint
|
||||
|
||||
class Horizontal(Constraint):
|
||||
def __init__(self, shape):
|
||||
self.shape = shape
|
6
Vertical.py
Normal file
6
Vertical.py
Normal file
@ -0,0 +1,6 @@
|
||||
|
||||
from Constraint import Constraint
|
||||
|
||||
class Vertical(Constraint):
|
||||
def __init__(self, shape):
|
||||
self.shape = shape
|
Loading…
x
Reference in New Issue
Block a user