画图!

This commit is contained in:
unlockable
2023-08-24 18:26:39 +08:00
parent 1a06287a0e
commit 932faabd4a

View File

@@ -79,7 +79,7 @@ void setup() {
for (int x = 0; x < 8; x++) { for (int x = 0; x < 8; x++) {
for (int y = 0; y < 8; y++) { for (int y = 0; y < 8; y++) {
Cube::set_status(x, y, (x + y)/2, 3); Cube::set_status(x, y, sqrt((x - 3) * (x - 3) + (y - 3) * (y - 3)), 3);
} }
} }
} }