Fix formatting

This commit is contained in:
codemob-dev 2025-07-28 17:15:30 -04:00
parent 436d792544
commit a658bcf5b9
2 changed files with 34 additions and 37 deletions

View File

@ -311,10 +311,7 @@ pub const Model = struct {
const maxBlockZ = @as(f32, @floatFromInt(boxMax[2]))/meshGridSize; const maxBlockZ = @as(f32, @floatFromInt(boxMax[2]))/meshGridSize;
const max = Vec3f{maxBlockX, maxBlockY, maxBlockZ}; const max = Vec3f{maxBlockX, maxBlockY, maxBlockZ};
self.collision[i] = AABB { self.collision[i] = AABB{.min = min, .max = max};
.min = min,
.max = max
};
i += 1; i += 1;
} }
} }