From 1ad2ee1d66d5cded72359e7b31dc7ec8a0b001fe Mon Sep 17 00:00:00 2001 From: Tom Chiverton Date: Sat, 15 Jul 2023 18:13:50 +0100 Subject: [PATCH] draw565: Correct arguments order in polar() docs Signed-off-by: Tom Chiverton --- wasp/draw565.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/wasp/draw565.py b/wasp/draw565.py index c6982ff..7944ae4 100644 --- a/wasp/draw565.py +++ b/wasp/draw565.py @@ -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 """