You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 26, 2025. It is now read-only.
@@ -92,7 +92,7 @@ export function drawCircleOnImage(
92
92
}
93
93
// The bresenham algorithm is drawing the circle in 4 parts. We are filling the top and bottom part of the circle. Therefore we check whether the point belongs to top or bottom part through indexes. Index must be 1 or 3 to fill the circle.
94
94
// Filling bottom half of the circle.
95
-
if((index-1)%4===0&&prevBotRow!==row){
95
+
if((index-1)%4===0&&prevRow!==row){
96
96
newImage.drawLine(
97
97
{ row,column: column+1},
98
98
{
@@ -101,19 +101,16 @@ export function drawCircleOnImage(
0 commit comments