Eyeshot 11 WPF API Reference
WPF Assembly / devDept.Eyeshot.Triangulation Namespace / ScalarField2D Delegate
X coordinate value
Y coordinate value

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

    Parameters

    x
    X coordinate value
    y
    Y coordinate value

    Return Value

    The scalar field value.
    See Also