Note: This documentation is preliminary and is subject to change.
Defines the options for welding vertices together.
Definition
Visual Basic .NET
Public Enum WeldEpsilonsFlags
C#
public enum WeldEpsilonsFlags
Managed C++
__value public enum WeldEpsilonsFlags
JScript .NET
public enum WeldEpsilonsFlags
Members
Member
Value
Description
DoNotSplit
8
Instructs the weld to allow vertices to be modified only, not removed. This flag is valid only if WeldPartialMatches is set. It is useful to modify vertices so that they are equal, but not to allow vertices to be removed.
DoNotRemoveVertices
4
Instructs the weld to allow vertices to be modified only, not removed. This flag is valid only if WeldPartialMatches is set. It is useful to modify vertices to be equal, but not to allow vertices to be removed.
WeldPartialMatches
2
If a given vertex component is within epsilon, instructs the weld to modify partially matched vertices so that both components are equal. If all components are equal, one of the vertices is removed.
WeldAll
1
Welds all vertices that are marked by adjacency as being overlapping.