Changeset 88 for nodebox/trunk/src/DrawingPrimitives.py
- Timestamp:
- 02/14/07 10:05:28 (23 months ago)
- Files:
-
- 1 modified
-
nodebox/trunk/src/DrawingPrimitives.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
nodebox/trunk/src/DrawingPrimitives.py
r83 r88 73 73 74 74 def __eq__(self, other): 75 if other is None: return False 75 76 return self.x == other.x and self.y == other.y 76 77 … … 318 319 319 320 def __eq__(self, other): 321 if other is None: return False 320 322 if self.cmd != other.cmd: return False 321 323 return self.x == other.x and self.y == other.y \
