MiHexahedronTopologyExplicitIjkGetCellNodeIndices Method |
Returns an array containing the 8 indices of a cell of this topology.
Namespace: OIV.MeshVizXLM.Mesh.TopologyAssembly: OIV.MeshVizXLM.Mesh (in OIV.MeshVizXLM.Mesh.dll) Version: 9.9.13.0.Release.908d87e01
Syntaxlong[] GetCellNodeIndices(
int i,
int j,
int k,
long[] nodeIndices
)
Function GetCellNodeIndices (
i As Integer,
j As Integer,
k As Integer,
nodeIndices As Long()
) As Long()
array<long long>^ GetCellNodeIndices(
int i,
int j,
int k,
array<long long>^ nodeIndices
)
abstract GetCellNodeIndices :
i : int *
j : int *
k : int *
nodeIndices : int64[] -> int64[]
Parameters
- i
- Type: SystemInt32
i-index of the cell - j
- Type: SystemInt32
j-index of the cell - k
- Type: SystemInt32
k-index of the cell - nodeIndices
- Type: SystemInt64
The array into which the 8 node indices of the cell are to be
stored if it is big enough; otherwise, a new array is allocated
for this purpose.
Return Value
Type:
Int64an array containing the 8 indices of the cell
Remarks
Returns an array containing the 8 indices of a cell of this topology. The
cell is identified by three indices i,j,k.
If the specified array length is big enough to store the 8 node indices,
they are returned therein. Otherwise, a new array is allocated.
See Also