Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Geometry Namespace / VolumeProperties Class / GetResults Method
Mass
Centroid
First moment X
First moment Y
First moment Z
Second moment X
Second moment Y
Second moment Z
Product moment XY
Product moment ZX
Product moment YZ
Moments of Inertia about world coordinate axes
Area Moments of Inertia about centroid coordinate axes

In This Topic
    GetResults Method (VolumeProperties)
    In This Topic
    This method is called to obtain the results.
    Syntax
    'Declaration
     
    Public Sub GetResults( _
       ByVal m As Double, _
       ByVal C As Point3D, _
       ByRef X As Double, _
       ByRef Y As Double, _
       ByRef Z As Double, _
       ByRef XX As Double, _
       ByRef YY As Double, _
       ByRef ZZ As Double, _
       ByRef XY As Double, _
       ByRef ZX As Double, _
       ByRef YZ As Double, _
       ByRef world As MomentOfInertia, _
       ByRef centroid As MomentOfInertia _
    ) 
    public void GetResults( 
       double m,
       Point3D C,
       out double X,
       out double Y,
       out double Z,
       out double XX,
       out double YY,
       out double ZZ,
       out double XY,
       out double ZX,
       out double YZ,
       out MomentOfInertia world,
       out MomentOfInertia centroid
    )

    Parameters

    m
    Mass
    C
    Centroid
    X
    First moment X
    Y
    First moment Y
    Z
    First moment Z
    XX
    Second moment X
    YY
    Second moment Y
    ZZ
    Second moment Z
    XY
    Product moment XY
    ZX
    Product moment ZX
    YZ
    Product moment YZ
    world
    Moments of Inertia about world coordinate axes
    centroid
    Area Moments of Inertia about centroid coordinate axes
    See Also