Home > RhinoScript Methods > Mesh Methods > MeshVolumeMoments
Calculates the volume moments of inertia of a closed mesh object. For more information, see the Rhino help file for "Mass Properties Calculation Details."
Rhino.MeshVolumeMoments (strObject)
strObject |
Required. String. The object's identifier. |
Array |
An array of volume moments of inertia information if successful. The array will contain the following information:
|
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Null |
If not successful, or on error. |
Const rhObjectMesh = 32
Dim strObject, arrMP
strObject = Rhino.GetObject("Select a mesh", rhObjectPolySurface)
If Rhino.IsMeshClosed(strObject) Then
arrMP = Rhino.MeshVolumeMoments(strObject)
If IsArray(arrMP) Then
Rhino.Print "Volume Moments of Inertia about the World Coordinate Axes: " & Rhino.Pt2Str(arrMP(6), 4)
End If
End If