#include <CellDuplicator.hpp>
Public Types | |
| typedef std::map< const Vertex *, size_t > | Translation |
Public Member Functions | |
| CellDuplicator (const CellType &cell, Translation &translator, VerticesSet &newVerticesSet) | |
| ~CellDuplicator () | |
Definition at line 36 of file CellDuplicator.hpp.
| typedef std::map<const Vertex*, size_t> CellDuplicator< CellType >::Translation |
Definition at line 40 of file CellDuplicator.hpp.
| CellDuplicator< CellType >::CellDuplicator | ( | const CellType & | cell, | |
| Translation & | translator, | |||
| VerticesSet & | newVerticesSet | |||
| ) | [inline] |
The constructor
| cell | a given cell | |
| translator | the correspondance list | |
| newVerticesSet | the new set of vertices |
Definition at line 50 of file CellDuplicator.hpp.
00053 : CellType(cell) 00054 { 00055 for (size_t i=0; i<CellType::NumberOfVertices; ++i) { 00056 this->__vertices[i] = &newVerticesSet[translator[&cell(i)]]; 00057 } 00058 }
| CellDuplicator< CellType >::~CellDuplicator | ( | ) | [inline] |
1.5.6