Eyeshot 11 WinForms API Reference
WinForms Assembly / devDept.Eyeshot.Triangulation Namespace / MarchingSquares Class / MarchingSquares Constructor / MarchingSquares Constructor(Int32,Single,Int32,Single,ScalarField2D)
Number of cells along the X axis
Cell size in X
Number of cells along the Y axis
Cell size in Y
The 3D scalar field function

In This Topic
    MarchingSquares Constructor(Int32,Single,Int32,Single,ScalarField2D)
    In This Topic
    Centered in world origin constructor.
    Syntax
    'Declaration
     
    Public Function New( _
       ByVal nCellsInX As Integer, _
       ByVal cellSizeX As Single, _
       ByVal nCellsInY As Integer, _
       ByVal cellSizeY As Single, _
       ByVal func As ScalarField2D _
    )
    public MarchingSquares( 
       int nCellsInX,
       float cellSizeX,
       int nCellsInY,
       float cellSizeY,
       ScalarField2D func
    )

    Parameters

    nCellsInX
    Number of cells along the X axis
    cellSizeX
    Cell size in X
    nCellsInY
    Number of cells along the Y axis
    cellSizeY
    Cell size in Y
    func
    The 3D scalar field function
    See Also