stefanonuvoli / quadmixer

QuadMixer: layout preserving blending of quadrilateral meshes.
GNU General Public License v3.0
25 stars 3 forks source link

How to export quad mesh #2

Open aplatyps opened 4 days ago

aplatyps commented 4 days ago

Hi, thanks for the great work! I'm trying to get a quad mesh and export it. However, I can't seem to convert a typical tri mesh to a quad mesh with quad mixer. How can I can do that?

Screenshot 2024-11-26 at 3 34 29 PM
stefanonuvoli commented 4 days ago

Hi,

QuadMixer does not solve the problem of converting triangle meshes to quad meshes. It takes in input quad meshes and preserves most of their quad tessellation, creating a new surface only close where the two meshes collide.

If you need quadrangulation of triangle meshes, you can give a look to the paper Reliable Feature-Line Driven Quad-Remeshing. You can find all information at https://www.quadmesh.cloud/.

Regards, Stefano

aplatyps commented 4 days ago

Thanks Stefano.