This commit is contained in:
2026-06-21 01:18:50 +03:00
parent afd438930e
commit 3b32bfa85f
20 changed files with 70 additions and 73 deletions
+1 -1
View File
@@ -27,7 +27,7 @@ func (g grid) At(x, y int) color.Color {
if n == 0 {
return color.Black
}
step := int((side*side-1) / n)
step := int((side*side - 1) / n)
if (y*side+x)%step == 0 {
return color.White
}