Skip to main content

SurfaceMeshStatisticType

Other

Surface mesh statistic types. Defines the types of statistics for surface mesh objects.

Import

import ScriptingApi as api

# Access the class
# SurfaceMeshStatisticType is available via api.SurfaceMeshStatisticType

Enumeration Values

Enumeration Type from SurfaceMeshStatisticType

ValueDescription
SurfaceMeshStatisticType.NumVerticesNumVertices option
SurfaceMeshStatisticType.NumTrianglesNumTriangles option
SurfaceMeshStatisticType.NumUniqueEdgesNumUniqueEdges option
SurfaceMeshStatisticType.NumEstimatedEdgesNumEstimatedEdges option
SurfaceMeshStatisticType.VolumeVolume option
SurfaceMeshStatisticType.VolumeFractionVolumeFraction option
SurfaceMeshStatisticType.SurfaceAreaSurfaceArea option
SurfaceMeshStatisticType.SurfaceAreaFractionSurfaceAreaFraction option
SurfaceMeshStatisticType.SurfaceAreaToVolumeRatioSurfaceAreaToVolumeRatio option
SurfaceMeshStatisticType.ShapeIndexShapeIndex option
SurfaceMeshStatisticType.SphericitySphericity option
SurfaceMeshStatisticType.CompactnessCompactness option
SurfaceMeshStatisticType.DiameterDiameter option
SurfaceMeshStatisticType.CenterOfMassXCenterOfMassX option
SurfaceMeshStatisticType.CenterOfMassYCenterOfMassY option
SurfaceMeshStatisticType.CenterOfMassZCenterOfMassZ option
SurfaceMeshStatisticType.BoundingBoxAreaBoundingBoxArea option
SurfaceMeshStatisticType.BoundingBoxVolumeBoundingBoxVolume option
SurfaceMeshStatisticType.BoundingBoxDiagonalBoundingBoxDiagonal option
SurfaceMeshStatisticType.BoundingBoxSizeXBoundingBoxSizeX option
SurfaceMeshStatisticType.BoundingBoxSizeYBoundingBoxSizeY option
SurfaceMeshStatisticType.BoundingBoxSizeZBoundingBoxSizeZ option
SurfaceMeshStatisticType.BoundingBoxCenterXBoundingBoxCenterX option
SurfaceMeshStatisticType.BoundingBoxCenterYBoundingBoxCenterY option
SurfaceMeshStatisticType.BoundingBoxCenterZBoundingBoxCenterZ option
SurfaceMeshStatisticType.NumRegionsNumRegions option
SurfaceMeshStatisticType.NumBoundaryEdgesNumBoundaryEdges option
SurfaceMeshStatisticType.NumNonManifoldEdgesNumNonManifoldEdges option
SurfaceMeshStatisticType.EulerCharacteristicEulerCharacteristic option
SurfaceMeshStatisticType.GenusGenus option

Usage Example

import ScriptingApi as api

# Access enumeration values
value = api.SurfaceMeshStatisticType.NumVertices

See Also