File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -631,19 +631,22 @@ def _update_transform(self):
631
631
def _get_xy (self ):
632
632
return self ._xy
633
633
def _set_xy (self , xy ):
634
+ self ._xy = xy
634
635
self ._update_transform ()
635
636
xy = property (_get_xy , _set_xy )
636
637
637
638
def _get_orientation (self ):
638
639
return self ._orientation
639
- def _set_orientation (self , xy ):
640
- self ._orientation = xy
640
+ def _set_orientation (self , orientation ):
641
+ self ._orientation = orientation
642
+ self ._update_transform ()
641
643
orientation = property (_get_orientation , _set_orientation )
642
644
643
645
def _get_radius (self ):
644
646
return self ._radius
645
- def _set_radius (self , xy ):
646
- self ._radius = xy
647
+ def _set_radius (self , radius ):
648
+ self ._radius = radius
649
+ self ._update_transform ()
647
650
radius = property (_get_radius , _set_radius )
648
651
649
652
def _get_numvertices (self ):
You can’t perform that action at this time.
0 commit comments