List of cells interface. More...
#include <MeshVizXLM/mesh/topology/MiTopologyI.h>
Public Member Functions | |
virtual size_t | getNumCells () const =0 |
virtual bool | isDead (size_t i) const |
Deprecated | |
| |
virtual SoDEPRECATED std::string | getCellName (size_t i) const |
virtual SoDEPRECATED std::string | getNodeName (size_t i) const |
A generic abstract interface for an implicit mesh topology.
virtual SoDEPRECATED std::string MiTopologyI::getCellName | ( | size_t | i | ) | const [inline, virtual] |
Returns the name of the cell.
The default implementation returns the cell identifier as a string.
i | the index of the cell |
virtual SoDEPRECATED std::string MiTopologyI::getNodeName | ( | size_t | i | ) | const [inline, virtual] |
Returns the name of the node.
The default implementation returns the node identifier as a string.
i | the index of the node |
virtual size_t MiTopologyI::getNumCells | ( | ) | const [pure virtual] |
Returns the number of cells.
virtual bool MiTopologyI::isDead | ( | size_t | i | ) | const [inline, virtual] |
Returns true if the cell of index i should be ignored.
This value is ignored if the hasDeadCell() method returns false. The default implementation returns always false.
i | the index of the cell to check |