Home | History | Annotate | Download | only in lib-tk

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)
849 def addcomponent(self, poly, fill, outline=None):
854 outline is the outline color of the component.
868 if outline is None:
869 outline = fill
870 outline])
1969 values of stretchfactor and outlinewidth (outline),
2110 If turtleshape is a polygon, outline and interior of that polygon
2156 If turtleshape is a polygon, the outline of that polygon is drawn
2269 "outline" : positive number
2281 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2288 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2293 {'pensize': 10, 'shown': True, 'resizemode': 'auto', 'outline': 1,
2305 "outline" : self._outlinewidth,
2358 if "outline" in p:
2359 self._outlinewidth = p["outline"]
2685 def shapesize(self, stretch_wid=None, stretch_len=None, outline=None):
2686 """Set/return turtle's stretchfactors/outline. Set resizemode to "user".
2691 outline : positive number
2693 Return or set the pen's attributes x/y-stretchfactors and/or outline.
2699 outline determines the width of the shapes's outline.
2704 >>> turtle.shapesize(outline=8)
2706 if stretch_wid is stretch_len is outline is None:
2718 if outline is None:
2719 outline = self._outlinewidth
2721 stretchfactor=stretchfactor, outline=outline)
2825 screen._drawpoly(titem, shape, fill=fc, outline=oc,
2836 outline=self._cc(oc), width=w, top=True)
2890 screen._drawpoly(stitem, shape, fill=fc, outline=oc,
2907 outline=self._cc(oc), width=w, top=True)
3503 fill="", outline="")