draw565: Correct arguments order in polar() docs
Signed-off-by: Tom Chiverton <tomchiverton@users.noreply.github.com>
This commit is contained in:
parent
0424efd304
commit
1ad2ee1d66
1 changed files with 2 additions and 2 deletions
|
@ -459,11 +459,11 @@ class Draw565(object):
|
||||||
draw = wasp.watch.drawable
|
draw = wasp.watch.drawable
|
||||||
draw.line(360 / 12, 16, 64)
|
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 theta: Angle, in degrees
|
||||||
:param r0: Radius of the start of the line
|
:param r0: Radius of the start of the line
|
||||||
:param y0: Radius of the end 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 width: Width of the line in pixels
|
||||||
:param color: Colour to draw line in, defaults to the foreground colour
|
:param color: Colour to draw line in, defaults to the foreground colour
|
||||||
"""
|
"""
|
||||||
|
|
Loading…
Reference in a new issue