diff --git a/curvipy/graphing_calculator.py b/curvipy/graphing_calculator.py index 706919f..dff2b8a 100644 --- a/curvipy/graphing_calculator.py +++ b/curvipy/graphing_calculator.py @@ -243,11 +243,11 @@ def _draw_axis(self) -> None: self._goto_without_drawing((-w * 2, 0)) self.goto((w * 2, 0)) - def clear(self) -> None: + def clean(self) -> None: """ - Clears the graphic calculator screen. + Cleans the graphic calculator screen. """ - turtle.clearscreen() + self.clear() turtle.bgcolor(self.background_color) if self.show_axis: self._draw_axis()