diff --git a/src/analyzer/epoint.py b/src/analyzer/epoint.py --- a/src/analyzer/epoint.py +++ b/src/analyzer/epoint.py @@ -7,8 +7,7 @@ class EPoint: self.x=x self.y=y - def fromTuple(tup): return EPoint(tup[0],tup[1]) - + @staticmethod def fromProjective(point): if point.item(0)==0: return None return EPoint(point.item(1)/point.item(0),point.item(2)/point.item(0))