Clarification on Isotropic Explicit Remeshing Filter and Target Length #1588
-
I bring here the message from Sara posted at https://stackoverflow.com/questions/79491935/clarification-on-isotropic-explicit-remeshing-filter-and-target-length
|
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
The
Answering your questions:
It will try to remove smaller edges. It is only guarantied that the result does not contain edges smaller that Lmin. But probably some edges will still be below the target_edge_length. Let's say it is normal the get some edges with 95% of the target_edge_length.
There is several approach you can use here:
|
Beta Was this translation helpful? Give feedback.
The
Isotropic Explicit Remeshing
Filter implements the work of Botsch and Kobbelt that you can find linked in the description of the filter. In short, it repeatedly splits long edges, collapses short edges, and relocates vertices until all edges are approximately of the desired target edge length running several cycles of this loop:The Lmin and Lmax thresholds values ensure that after a split or collapse function, the resulting edge lengths are closer to the targe…