pushing some additional features

This commit is contained in:
yggdrasil75
2026-01-18 20:44:30 -05:00
parent 81af30d4c6
commit b820c89bd0
5 changed files with 735 additions and 27 deletions

View File

@@ -200,7 +200,6 @@ public:
class VoxelGrid {
private:
double binSize = 1;
Vec3i gridSize;
//int width, height, depth;
std::vector<Voxel> voxels;
@@ -212,6 +211,7 @@ private:
}
public:
double binSize = 1;
VoxelGrid() : gridSize(0,0,0) {
std::cout << "creating empty grid." << std::endl;
}