Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Triangulation Namespace / ScalarField3D Delegate
X coordinate value
Y coordinate value
Z coordinate value

In This Topic
    ScalarField3D Delegate
    In This Topic
    The function used by the marching cube algorithm to evaluate the 3D scalar field.
    Syntax
    'Declaration
     
    Public Delegate Function ScalarField3D( _
       ByVal x As Single, _
       ByVal y As Single, _
       ByVal z As Single _
    ) As Single
    public delegate float ScalarField3D( 
       float x,
       float y,
       float z
    )

    Parameters

    x
    X coordinate value
    y
    Y coordinate value
    z
    Z coordinate value

    Return Value

    The scalar field value.
    See Also