chore: format everything

This commit is contained in:
Tropical
2026-03-30 02:13:59 -05:00
parent 470ddf959d
commit c9b90cae2c
463 changed files with 12748 additions and 11285 deletions

View File

@@ -39,7 +39,8 @@ std::optional<AABB> CakeTile::getAABB(Level* level, int x, int y, int z) {
float r = 1 / 16.0f;
float r2 = (1 + d * 2) / 16.0f;
float h = 8 / 16.0f;
return AABB{x + r2, static_cast<double>(y), z + r, x + 1 - r, y + h - r, z + 1 - r};
return AABB{x + r2, static_cast<double>(y), z + r, x + 1 - r, y + h - r,
z + 1 - r};
}
AABB CakeTile::getTileAABB(Level* level, int x, int y, int z) {