From be14b38231b312a4ee373e42ed1470805d29a45f Mon Sep 17 00:00:00 2001 From: a23022716 <celia.arezki.1@etu.univ-amu.fr> Date: Fri, 27 Sep 2024 11:44:15 +0200 Subject: [PATCH] fix of The Circle class stores the center point and radius, and it implements the draw method to render the circle using JavaFX's GraphicsContext. --- src/main/java/shape/Circle.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/shape/Circle.java b/src/main/java/shape/Circle.java index d023831..0bcb264 100644 --- a/src/main/java/shape/Circle.java +++ b/src/main/java/shape/Circle.java @@ -17,7 +17,7 @@ public class Circle implements Shape { @Override public int pointsCount() { - return 1; // Un cercle n'a qu'un centre + return 1; } @Override -- GitLab