Reference for draw_shape
Draw a shape. This is part of the reference section.
Arc
Buffer
Data
Dialog
Ellipse
Geo Utils
Image
Joystick (future)
Keyboard
Line
Mouse / Touchscreen
Pixel
Rectangle
Renderers
Shape
draw_shape
Sound (future)
Style
System
Text
Transform
Purpose
Draw a shape which consists of multiple line or curve segments and which can be either open (stroke only) or closed (can be filled).
Snippet
Draw a shape which consists of a single line from x of 50 and y of 100 to x of 150 and y of 200.
shape = sketch.start_shape(50, 100) shape.add_line_to(150, 200) shape.end() sketch.draw_shape(shape)
Parameters
- shape: The shape to draw.
Examples
Availability
Available for all platforms.