Lines Matching full:outline
521 return self.cv.create_polygon((0, 0, 0, 0, 0, 0), fill="", outline="")
524 outline=None, width=None, top=False):
529 outline is outline color
541 if outline is not None:
542 self.cv.itemconfigure(polyitem, outline=outline)
848 def addcomponent(self, poly, fill, outline=None):
853 outline is the outline color of the component.
867 if outline is None:
868 outline = fill
869 self._data.append([poly, fill, outline])
1968 values of stretchfactor and outlinewidth (outline),
2109 If turtleshape is a polygon, outline and interior of that polygon
2155 If turtleshape is a polygon, the outline of that polygon is drawn
2268 "outline" : positive number
2280 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2287 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2292 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2304 "outline" : self._outlinewidth,
2357 if "outline" in p:
2358 self._outlinewidth = p["outline"]
2684 def shapesize(self, stretch_wid=None, stretch_len=None, outline=None):
2685 """Set/return turtle's stretchfactors/outline. Set resizemode to "user".
2690 outline : positive number
2692 Return or set the pen's attributes x/y-stretchfactors and/or outline.
2698 outline determines the width of the shapes's outline.
2703 >>> turtle.shapesize(outline=8)
2705 if stretch_wid is stretch_len is outline is None:
2717 if outline is None:
2718 outline = self._outlinewidth
2720 stretchfactor=stretchfactor, outline=outline)
2824 screen._drawpoly(titem, shape, fill=fc, outline=oc,
2835 outline=self._cc(oc), width=w, top=True)
2889 screen._drawpoly(stitem, shape, fill=fc, outline=oc,
2906 outline=self._cc(oc), width=w, top=True)
3502 fill="", outline="")