Changeset 1662
- Timestamp:
- 07/17/07 13:27:23 (1 year ago)
- Files:
-
- gaphas/branches/hw/gaphas/item.py (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/branches/hw/gaphas/item.py
r1659 r1662 297 297 >>> b._handles[NW].x 298 298 Variable(0, 40) 299 >>> b._handles[ SE].x299 >>> b._handles[NE].x 300 300 Variable(20, 40) 301 301 """ … … 327 327 >>> b._handles[NW].y 328 328 Variable(0, 40) 329 >>> b._handles[S E].y329 >>> b._handles[SW].y 330 330 Variable(10, 40) 331 331 """ … … 340 340 """ 341 341 h = self._handles 342 return float(h[S E].y) - float(h[NW].y)342 return float(h[SW].y) - float(h[NW].y) 343 343 344 344 height = property(_get_height, _set_height)
