Added radius which is necessary for it.filled_circle command (#773)

This commit is contained in:
damanti-me 2020-09-23 22:35:56 +02:00 committed by GitHub
parent 86c6a944ac
commit 0d8df9652a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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.