Interface class defining a cell filter for structured surface meshes. More...
#include <MeshVizXLM/mesh/cell/MiCellFilterIj.h>
Public Member Functions | |
virtual bool | acceptCell (size_t i, size_t j) const =0 |
This abstract class specifies the interface 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(i,j) returns false, the cell specified by (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.
virtual bool MiCellFilterIj::acceptCell | ( | size_t | i, | |
size_t | j | |||
) | const [pure virtual] |
Returns true if the cell is accepted.
Accepted cells are used during the extraction process.
(i,j) | indices of the cell to be checked. |