Changeset 1350
- Timestamp:
- 06/11/07 04:13:10 (1 year ago)
- Files:
-
- gaphas/trunk/gaphas/constraint.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/gaphas/constraint.py
r1327 r1350 356 356 get_i2w = self._canvas.get_matrix_i2w 357 357 358 sx, sy = get_i2w(self._connect_to_item ).transform_point(start.x, start.y)358 sx, sy = get_i2w(self._connect_to_item, calculate=True).transform_point(start.x, start.y) 359 359 ex, ey = get_i2w(self._connect_to_item).transform_point(end.x, end.y) 360 px, py = get_i2w(self._connected_item ).transform_point(point.x, point.y)360 px, py = get_i2w(self._connected_item, calculate=True).transform_point(point.x, point.y) 361 361 362 362 try:
