This commit is contained in:
waltem01 2023-11-24 07:09:04 +01:00
parent c17899511e
commit 591dc8a3cd

View File

@ -215,7 +215,7 @@ class Matrix(SampleBase):
# display circle at position with radius in current color
def circle(self, x: int, y: int, r: int):
graphics.DrawCircle(self.canvas, self.font, x, y, r, self.color)
graphics.DrawCircle(self.canvas, x, y, r, self.color)
# display rectangle at position with dimensions in current color
def rectangle(self, x: int, y: int, w: int, h: int):