Changeset 1560
- Timestamp:
- 07/03/07 00:15:54 (1 year ago)
- Files:
-
- gaphas/trunk/gaphas/item.py (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
gaphas/trunk/gaphas/item.py
r1540 r1560 358 358 # follow thanks to equality constraints above 359 359 # TODO: use LessThanConstraint.delta to calculate minimal size 360 add(lt(smaller=h[NW].x, bigger=h[SE].x)), 361 add(lt(smaller=h[NW].y, bigger=h[SE].y)), 360 #add(lt(smaller=h[NW].x, bigger=h[SE].x)), 361 #add(lt(smaller=h[NW].y, bigger=h[SE].y)), 362 add(lt(smaller=h[NW].x, bigger=h[NE].x)), 363 add(lt(smaller=h[SW].x, bigger=h[SE].x)), 364 add(lt(smaller=h[NE].y, bigger=h[SE].y)), 365 add(lt(smaller=h[NW].y, bigger=h[SW].y)), 362 366 ] 363 367
