How to apply advanced settings in Select Creases by Angle #5140
Answered by Grantim
ParvGuptaSpCT asked this question in Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by Grantim Sep 24, 2025
Replies: 1 comment 1 reply
-
| Hello! We use this function: MeshLib/source/MRMesh/MRFilterCreaseEdges.h Lines 7 to 10 in 4fe9bb2 like this: if ( filterComponents_ ) filterCreaseEdges( mesh, creases, lengthThreshold_, true, false ); if ( filterBranches_ ) { for ( int i = 0; i < iterCount_; ++i ) filterCreaseEdges( mesh, creases, lengthThreshold_, false, true ); } if ( filterComponents_ && iterCount_ > 1 ) filterCreaseEdges( mesh, creases, lengthThreshold_, true, false );Same could be used in python |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by ParvGuptaSpCT
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Hello!
We use this function:
MeshLib/source/MRMesh/MRFilterCreaseEdges.h
Lines 7 to 10 in 4fe9bb2
like this: