Skip to content

Clarification on Isotropic Explicit Remeshing Filter and Target Length #1588

Answered by jmespadero
jmespadero asked this question in Q&A
Discussion options

You must be logged in to vote

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:


Lmin = 4/5 * target_edge_length
Lmax = 4/3 * target_edge_length

for i = 0 to 10 do
    split_long_edges(Lmax)
    collapse_short_edges(Lmin,Lmax)
    equalize_valences()
    tangential_relaxation()
    project_to_surface()
  • The Lmin and Lmax thresholds values ensure that after a split or collapse function, the resulting edge lengths are closer to the targe…

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by jmespadero
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
1 participant