Commit be127bc2 authored by Whitham D. Reeve II's avatar Whitham D. Reeve II

Fixed another casualty of the switch from point objects to point tuples.

parent 3ca79c3c
......@@ -54,7 +54,7 @@ class Plane(IDGenerator, TransformableContainer):
return cmp(str(self), str(other))
def copy(self):
return self.__class__(self.p.copy(), self.n.copy())
return self.__class__(self.p, self.n)
def next(self):
yield "p"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment