Fixed typo in Circle class

This commit is contained in:
bluefireoly
2020-09-15 18:03:04 +02:00
parent f85779c41d
commit 16a27d0aa0

View File

@@ -38,7 +38,7 @@ abstract class Circle(val radius: Number) {
y++ y++
if (d > 0) { if (d > 0) {
d += -2 * 3 + 2 d += -2 * x + 2
x-- x--
} }