Reputation: 1
I need a C++ program which allows to voxelize 3D models (From .Obj, .OFF,...) and provide the result in the same format of file (.obj, .OFF).
Upvotes: 0
Views: 2396
Reputation: 52166
Look into binvox and/or poly2vox for the voxelization step.
binvox
poly2vox
You'll have to roll your own voxel-to-OBJ routine. But that should be pretty easy depending on how sophisticated you want to get.
Upvotes: 1