Click or drag to resize
MiGeometryHexahedronIjkGetCellCoords Method
Returns the coordinates of the hexahedron (i,j,k) cell.

Namespace: OIV.MeshVizXLM.Mesh.Geometry
Assembly: OIV.MeshVizXLM.Mesh (in OIV.MeshVizXLM.Mesh.dll) Version: 9.9.13.0.Release.908d87e01
Syntax
void GetCellCoords(
	int i,
	int j,
	int k,
	double[] cellCoords
)

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
Returns the coordinates of the hexahedron (i,j,k) cell.

The way the vertices of each hexahedron are numbered is indicated by the OIV.MeshVizXLM.Mesh.CellStorageLayout value returned by GetCellStorageLayout() .

See Also