incorrect class names

This commit is contained in:
Josh Holtrop 2011-03-29 14:28:40 -04:00
parent a81c0d5a7d
commit e32f380e80
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
from Constraint import Constraint
class Vertical(Constraint):
class XDistance(Constraint):
def __init__(self, shape1, pt1, shape2, pt2, dist):
self.shape1 = shape1
self.pt1 = pt1

View File

@ -1,7 +1,7 @@
from Constraint import Constraint
class Horizontal(Constraint):
class YDistance(Constraint):
def __init__(self, shape1, pt1, shape2, pt2, dist):
self.shape1 = shape1
self.pt1 = pt1