Home | History | Annotate | Download | only in Lib

Lines Matching refs:stretch_wid

2780     def shapesize(self, stretch_wid=None, stretch_len=None, outline=None):
2784 stretch_wid : positive number
2792 stretch_wid is stretchfactor perpendicular to orientation
2801 if stretch_wid is stretch_len is outline is None:
2802 stretch_wid, stretch_len = self._stretchfactor
2803 return stretch_wid, stretch_len, self._outlinewidth
2804 if stretch_wid == 0 or stretch_len == 0:
2805 raise TurtleGraphicsError("stretch_wid/stretch_len must not be zero")
2806 if stretch_wid is not None:
2808 stretchfactor = stretch_wid, stretch_wid
2810 stretchfactor = stretch_wid, stretch_len