Enum MeshVolumeValidationResult
Describes the deterministic closed-volume validation result for a triangle mesh.
public enum MeshVolumeValidationResult
Fields
BoundaryEdge = 1At least one edge belongs to only one triangle.
DisconnectedShell = 4The mesh contains multiple disconnected closed shells.
DuplicateTriangle = 6The mesh repeats a triangle with the same three vertex indices.
InconsistentWinding = 3Adjacent triangles do not use opposite directions for a shared edge.
NonManifoldEdge = 2At least one edge belongs to more than two triangles.
NonManifoldVertex = 9At least one exact-position-welded vertex has multiple disconnected triangle fans.
NonRepresentableMassProperties = 8The scaled center of mass or inertia moments exceed the representable fixed-point range.
NonRepresentableVolume = 7The scaled solid volume exceeds the representable fixed-point range.
Valid = 0The mesh is one consistently wound closed volume.
ZeroVolume = 5The mesh has no usable signed volume after topology validation.