Skip to content

Latest commit

 

History

History
31 lines (25 loc) · 880 Bytes

File metadata and controls

31 lines (25 loc) · 880 Bytes

Moments3D

Description

Returns the moments of inertia of a 3D object about the x, y, and z axes of a point at the center of gravity of the object.

FUNCTION Moments3D(
				obj     : HANDLE;
				VAR lxx : REAL;
				VAR lyy : REAL;
				VAR lzz : REAL): BOOLEAN;
def vs.Moments3D(obj):
    return (BOOLEAN, lxx, lyy, lzz)

Parameters

Name Type Description
obj HANDLE The object for which to find the 3D moments.
lxx REAL The moment of inertia relative to the x-axis passing through the center of mass of object
lyy REAL The moment of inertia relative to the y-axis passing through the center of mass of object
lzz REAL The moment of inertia relative to the z-axis passing through the center of mass of object

Version

Availability: from VectorWorks 10.1

Category