Hello and thanks in advance for reading this post. I have been working on a mesh conversion tool using OpenVDB. I have come across a situation where I would read in a mesh as triangles and store it as a VDB levelset using MeshToVolume. I would then use VolumeToMesh to convert the VDB levelset into an OBJ file. However, I noticed that the newly created obj file would be written as Quads as opposed to Triangles since VolumeToMesh returns a set of quads as opposed to triangles. I was wondering if it there is a built-in way to specify whether the generated faces from VolumeToMesh are triangles or quads. If not, I could convert the generated quads to triangles myself.
Any assistance is greatly appreciated.
~Kacey