voxelizer icon indicating copy to clipboard operation
voxelizer copied to clipboard

Header only mesh voxelizer in c99

Results 4 voxelizer issues
Sort by recently updated
recently updated
newest added

Hi. For a project witch need to make fastly collisions for stages, I test yours solution to make voxels. After getting the resulting point_cloud from yours functions, I add a...

https://github.com/karimnaaji/voxelizer/blob/d175be523b9e6aff231675afe670b7d8ffb42916/example/main.cpp#L107 the mesh free call should be after the point cloud ifdef

I was tinkering with this today. Really neat project. It would have been nice to be able to get quads in the generated output instead of just triangles. I saw...

In the `vx__voxelize` function, the `vx__aabb_center` function is used to obtain the center point of an AABB by calculating `(saabb.min + saabb.max) / 2`. However, this is equivalent to `((xyz...