Changeset 2216
- Timestamp:
- 02/13/08 02:41:46 (10 months ago)
- Files:
-
- gaphas/trunk/gaphas/canvas.py (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/gaphas/canvas.py
r2215 r2216 663 663 (Variable(33, 40), Variable(10, 40)) 664 664 665 TODO: How will this work on rotated variables?666 665 When the variables are retrieved, new values are calculated. 667 666 """ … … 688 687 a value attribute with the real value. 689 688 """ 689 item = self._item 690 690 x, y = self._point 691 item = self._item692 691 self._px, self._py = item.canvas.get_matrix_i2c(item).transform_point(x, y) 693 692 return self._px, self._py
