alecjacobson / geometry-processing-deformation

Deformation assignment for Geometry Processing course
Mozilla Public License 2.0
149 stars 94 forks source link

a question in deformation code. #54

Open oddsman opened 5 years ago

oddsman commented 5 years ago

Hi.

Im Choi Dae Young.

I am a 3D medical device researcher who is working hard in graduate school to see your git in Korea.

I was curious about using your code as well. So I have to contact you.

I'm sorry you're busy.

If I put a large .stl file in source code, I get a 'Error : numerical issue' & 'Error : invalid solver type.

I wonder if this happens only when the size is huge, and whether i can ignore it.

Or I theoretically wonder whether i can apply device section of a big object and apply the deformation.

Thank you very much for looking my mail.

Please understand that English is poor because it is Korean.

alecjacobson commented 5 years ago

.stl files store all triangles separated rather than as a single mesh. you could convert to an .obj (e.g., using mesh lab) or add a line after reading in the mesh that joins coincident vertices (e.g., via igl::remove_duplicate_vertices).

oddsman commented 5 years ago

Thank you very much. I did not know it was a type problem so I worked on the wrong place. I have used obj file to convert it. Thank you.