Interface MiTopologyI
-
- All Superinterfaces:
MiTopology
- All Known Subinterfaces:
MeXLineTopologyExplicitI<C>
,MeXSurfaceTopologyExplicitI<C>
,MeXTopologyI
,MiLineTopologyExplicitI<C>
,MiSurfaceTopologyExplicitI<C>
,MiTopologyExplicitI<C>
,MiVolumeTopologyExplicitI<C>
public interface MiTopologyI extends MiTopology
List of cells interface.A generic interface for an implicit mesh topology.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description long
getNumCells()
Returns the number of cells of this topology.boolean
isDead(long i)
Returnstrue
if the cell of index i should be ignored.-
Methods inherited from interface com.openinventor.meshvizxlm.mesh.topology.MiTopology
getTimeStamp, hasDeadCells
-
-
-
-
Method Detail
-
getNumCells
long getNumCells()
Returns the number of cells of this topology.- Returns:
- number of cells
-
isDead
boolean isDead(long i)
Returnstrue
if the cell of index i should be ignored. This value is ignored if thehasDeadCell
method returnsfalse
.- Parameters:
i
- the index of the cell to check- Returns:
true
if the i-th cell should be ignored
-
-