Xiaolong He
Xiaolong He
Cannot build on Windows 10 due to this fatal error. Can you please fix it?
Hi, can CDT be used for 2D triangulation of points in 3D space, like 3D surface reconstruction of point clouds?
> @xiaolong7 Is this PR still in a ready-for-review state, given the recent changes? Yes, it is ready for review.
Hello, I did a test on a surface mesh with a boundary. If the initial mesh is sparse and remeshed to have more triangles, the library works well, as follows....
> Should have a proper handling for the bounday edge resizing before the whole remesh process which is currently missing. > > Possible TODO: > > * Break long edge...
Thank you for your suggestions. What if two boundary edges with length smaller than the target edge length but they are not colinear (straight)? Just leave them as they are?...
Thank you for your suggestion!
> Add the following check > > https://github.com/huxingyi/isotropicremesher/blob/d4674ce63288d7a55a70735181049895aebc3bf7/src/isotropicremesher.cpp#L195 > > before breaking the edge > > https://github.com/huxingyi/isotropicremesher/blob/d4674ce63288d7a55a70735181049895aebc3bf7/src/isotropicremesher.cpp#L164 Thank you for your suggestion! I have made the following change according to...
It works after I changed the condition to `if (!halfedge->startVertex->_isBoundary && !nextHalfedge->startVertex->_isBoundary) `. Thank you!