Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Entities Namespace / Surface Class / GlobalInterpolation Method
A matrix of 3D points
The degree of interpolation in the U direction
The degree of interpolation in the V direction

In This Topic
    GlobalInterpolation Method (Surface)
    In This Topic
    Global surface interpolation.
    Syntax
    'Declaration
     
    Public Shared Function GlobalInterpolation( _
       ByVal Q(,) As Point3D, _
       ByVal degU As Integer, _
       ByVal degV As Integer _
    ) As Surface
    public static Surface GlobalInterpolation( 
       Point3D[,] Q,
       int degU,
       int degV
    )

    Parameters

    Q
    A matrix of 3D points
    degU
    The degree of interpolation in the U direction
    degV
    The degree of interpolation in the V direction

    Return Value

    The approximated surface if the operation is successful, null/Nothing otherwise.
    See Also