1
0
Fork 0

draw565: Correct arguments order in polar() docs

Signed-off-by: Tom Chiverton <tomchiverton@users.noreply.github.com>
This commit is contained in:
Tom Chiverton 2023-07-15 18:13:50 +01:00 committed by Daniel Thompson
parent 0424efd304
commit 1ad2ee1d66

View file

@ -459,11 +459,11 @@ class Draw565(object):
draw = wasp.watch.drawable
draw.line(360 / 12, 16, 64)
:param x: X coordinate of the origin
:param y: Y coordinate of the origin
:param theta: Angle, in degrees
:param r0: Radius of the start of the line
:param y0: Radius of the end of the line
:param x: X coordinate of the origin
:param y: Y coordinate of the origin
:param width: Width of the line in pixels
:param color: Colour to draw line in, defaults to the foreground colour
"""