From 0d8df9652a0e09ef74e268d0b79d41afa907cbff Mon Sep 17 00:00:00 2001 From: damanti-me <54947096+damanti-me@users.noreply.github.com> Date: Wed, 23 Sep 2020 22:35:56 +0200 Subject: [PATCH] Added radius which is necessary for it.filled_circle command (#773) --- components/display/index.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/display/index.rst b/components/display/index.rst index 6344d98af..551b5a566 100644 --- a/components/display/index.rst +++ b/components/display/index.rst @@ -118,7 +118,7 @@ Additionally, you have access to two helper methods which will fetch the width a # ... lambda: |- // Draw a circle in the middle of the display - it.filled_circle(it.get_width() / 2, it.get_height() / 2); + it.filled_circle(it.get_width() / 2, it.get_height() / 2, 20); You can view the full API documentation for the rendering engine in the "API Reference" in the See Also section.