MiGeometryHexahedronIjkGetCellCoords Method |
Returns the coordinates of the hexahedron (i,j,k) cell.
Namespace: OIV.MeshVizXLM.Mesh.GeometryAssembly: OIV.MeshVizXLM.Mesh (in OIV.MeshVizXLM.Mesh.dll) Version: 9.9.13.0.Release.908d87e01
Syntaxvoid GetCellCoords(
int i,
int j,
int k,
double[] cellCoords
)
Sub GetCellCoords (
i As Integer,
j As Integer,
k As Integer,
cellCoords As Double()
)
void GetCellCoords(
int i,
int j,
int k,
array<double>^ cellCoords
)
abstract GetCellCoords :
i : int *
j : int *
k : int *
cellCoords : float[] -> unit
Parameters
- i
- Type: SystemInt32
the id of this hexahedron on the axis I.
0 <= i <
meshTopologyIjk.getNumCellsI()
.
- j
- Type: SystemInt32
the id of this hexahedron on the axis J.
0 <= j <
meshTopologyIjk.getNumCellsJ()
.
- k
- Type: SystemInt32
the id of this hexahedron on the axis K.
0 <= k <
meshTopologyIjk.getNumCellsK()
.
- cellCoords
- Type: SystemDouble
the array into which the 8 vertices of the hexahedron (i,j,k) are
to be stored.
Remarks
See Also