#include <map>
#include <QObject>
#include <MeshComponent.h>
#include "PMLComponentAPI.h"
#include <CamiTKDisableWarnings>
#include <vtkExtractSelection.h>
#include <CamiTKReEnableWarnings>
#include <vtkSelectionNode.h>
Go to the source code of this file.
|
namespace | camitk |
|
namespace | std |
| STL namespace.
|
|
|
using | std::AtomPointIdMap = std::map< const Atom *, const vtkIdType > |
| definition of the association set (=map in STL) AtomPointIdMap.
|
|
using | std::AtomPointIdMapIterator = std::map< const Atom *, const vtkIdType >::iterator |
| the iterator corresponding to the AtomPointIdMap map
|
|
using | std::AtomPointIdPair = std::pair< const Atom *, const vtkIdType > |
| As the PhysicalModel atom index can be different to the node index (continuity in id is not mandatory in PML) a map is needed to link the atom index with its corresponding vtkPoint Id definition of a couple (=STL pair) [Atom *, vtkIdType] this associates an atom to its vtkPoint Id.
|
|