Lines Matching defs:Shape
120 'RawTurtle', 'Turtle', 'RawPen', 'Pen', 'Shape', 'Vec2D']
871 class Shape(object):
906 >>> s = Shape("compound")
911 raise TurtleGraphicsError("Cannot add component to %s Shape"
970 "arrow" : Shape("polygon", ((-10,0), (10,0), (0,10))),
971 "turtle" : Shape("polygon", ((0,16), (-2,14), (-1,10), (-4,7),
976 "circle" : Shape("polygon", ((10,0), (9.51,3.09), (8.09,5.88),
982 "square" : Shape("polygon", ((10,-10), (10,10), (-10,10),
984 "triangle" : Shape("polygon", ((10,-5.77), (0,11.55),
986 "classic": Shape("polygon", ((0,0),(-5,-9),(0,-7),(5,-9))),
987 "blank" : Shape("image", self._blankimage())
1120 (compound) Shape object. Installs the corresponding
1134 shape = Shape("image", self._image(name))
1139 shape = Shape("polygon", shape)
1140 ## else shape assumed to be Shape-instance
2762 Shape with name must exist in the TurtleScreen's shape dictionary.