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

Lines Matching refs:polygon

519         """Create an invisible polygon item on canvas self.cv)
747 """Return 'line' or 'polygon' or 'image' depending on
828 attribute _type is one of "polygon", "image", "compound"
834 if type_ == "polygon":
851 Arguments: poly is a polygon, i. e. a tuple of number pairs.
923 "arrow" : Shape("polygon", ((-10,0), (10,0), (0,10))),
924 "turtle" : Shape("polygon", ((0,16), (-2,14), (-1,10), (-4,7),
929 "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
935 "square" : Shape("polygon", ((10,-10), (10,10), (-10,10),
937 "triangle" : Shape("polygon", ((10,-5.77), (0,11.55),
939 "classic": Shape("polygon", ((0,0),(-5,-9),(0,-7),(5,-9))),
1063 polygon shape
1084 shape = Shape("polygon", shape)
1869 As the circle is approximated by an inscribed regular polygon,
1877 --or: circle(radius, steps=6) # 6-sided polygon
1995 to "auto" and turtleshape is a polygon, that polygon is drawn with
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
2192 If turtleshape is a polygon, the interior of that polygon is drawn
2397 if self._type == "polygon" == screen._shapes[shapeIndex]._type:
2401 if self._type in ["image", "polygon"]:
2407 if self._type == "polygon":
2646 if ttype == "polygon":
2666 Initially there are the following polygon shapes:
2785 """Computes transformed polygon shapes from a shape
2806 if ttype == "polygon":
2839 if ttype == "polygon":
2870 if ttype == "polygon":
3076 ## if undo is done during creating a polygon, the last vertex
3077 ## will be deleted. if the polygon is entirely deleted,
3306 """Start recording the vertices of a polygon.
3310 Start recording the vertices of a polygon. Current turtle position
3311 is first point of polygon.
3320 """Stop recording the vertices of a polygon.
3324 Stop recording the vertices of a polygon. Current turtle position is
3325 last point of polygon. This will be connected with the first point.
3333 """Return the lastly recorded polygon.