Interface MiCellFilterIj
-
- All Superinterfaces:
MiCellFilter
public interface MiCellFilterIj extends MiCellFilter
Defines a cell filter for structured surface meshes.This interface is used for filtering cells on structured surface meshes.
Filtering cells is a way to specify which cells are used to build the mesh representation.When the method
acceptCell
returnsfalse
, the cell specified by the indices(i,j)
is not taken into account by the extraction. It is as if the mesh does not contain this cell.In order to define a custom cell filter for a structured surface mesh, create a class derived from this class.
- See Also:
MoCellFilter
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description boolean
acceptCell(long i, long j)
Checks if the cell is accepted.-
Methods inherited from interface com.openinventor.meshvizxlm.mesh.cell.MiCellFilter
getTimeStamp
-
-