Skip to content

Commit c7e6f9c

Browse files
committed
Clarify the retun in the method generateCirclePoints
in the MidpointCircle class. --- a/src/main/java/com/thealgorithms/geometry/MidpointCircle.java
1 parent 3519a91 commit c7e6f9c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/java/com/thealgorithms/geometry/MidpointCircle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ public static List<int[]> generateCirclePoints(int centerX, int centerY, int rad
5858
// Add points for this (x, y)
5959
addSymmetricPoints(points, centerX, centerY, x, y);
6060
}
61-
61+
//retuns the list of points in the circle
6262
return points;
6363
}
6464

0 commit comments

Comments
 (0)