Interface MiTopologyIj
-
- All Superinterfaces:
MiTopology
- All Known Subinterfaces:
MeXTopologyIj
public interface MiTopologyIj extends MiTopology
List of structured surface cells interface.A generic interface for a structured implicit surface mesh topology.
Cells are all implicitly defined as quadrangles so there is no need for specifying a list of cells.
The number of cells on each dimension defines completely the topology.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getNumCellsI()
Returns the number of cells on the first logical axis.long
getNumCellsJ()
Returns the number of cells on the second logical axis.boolean
isDead(long i, long j)
Returnstrue
if the cell at the specified position should be ignored.-
Methods inherited from interface com.openinventor.meshvizxlm.mesh.topology.MiTopology
getTimeStamp, hasDeadCells
-
-
-
-
Method Detail
-
getNumCellsI
long getNumCellsI()
Returns the number of cells on the first logical axis.- Returns:
- the number of cells on the first logical axis.
-
getNumCellsJ
long getNumCellsJ()
Returns the number of cells on the second logical axis.- Returns:
- the number of cells on the second logical axis.
-
isDead
boolean isDead(long i, long j)
Returnstrue
if the cell at the specified position should be ignored.This value is ignored if the
hasDeadCell
method returnsfalse
.- Parameters:
i
- i-index of the cell to checkj
- j-index of the cell to check- Returns:
true
if the cell should be ignored
-
-