user2170617
user2170617

Reputation: 1

Voxelize 3D objects from .OFF and .OBJ files

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

Answers (1)

genpfault
genpfault

Reputation: 52166

Look into binvox and/or poly2vox for the voxelization step.

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

Related Questions