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

In This Topic
    MarchingCubes Constructor(Int32,Single,Int32,Single,Int32,Single,ScalarField3D)
    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 nCellsInZ As Integer, _
       ByVal cellSizeZ As Single, _
       ByVal func As ScalarField3D _
    )
    public MarchingCubes( 
       int nCellsInX,
       float cellSizeX,
       int nCellsInY,
       float cellSizeY,
       int nCellsInZ,
       float cellSizeZ,
       ScalarField3D 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
    nCellsInZ
    Number of cells along the Z axis
    cellSizeZ
    Cell size in Z
    func
    The 3D scalar field function
    See Also