Changeset 1662

Show
Ignore:
Timestamp:
07/17/07 13:27:23 (1 year ago)
Author:
wrobe..@pld-linux.org
Message:

- fixed set/get width/height tests

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • gaphas/branches/hw/gaphas/item.py

    r1659 r1662  
    297297        >>> b._handles[NW].x 
    298298        Variable(0, 40) 
    299         >>> b._handles[SE].x 
     299        >>> b._handles[NE].x 
    300300        Variable(20, 40) 
    301301        """ 
     
    327327        >>> b._handles[NW].y 
    328328        Variable(0, 40) 
    329         >>> b._handles[SE].y 
     329        >>> b._handles[SW].y 
    330330        Variable(10, 40) 
    331331        """ 
     
    340340        """ 
    341341        h = self._handles 
    342         return float(h[SE].y) - float(h[NW].y) 
     342        return float(h[SW].y) - float(h[NW].y) 
    343343 
    344344    height = property(_get_height, _set_height)