OGS
MeshNodalCoordinatesBackend.h
Go to the documentation of this file.
1
9#pragma once
10
11#include <vtkType.h>
12
13#include <vector>
14
15namespace MeshLib
16{
17class Node;
18}
19
20namespace MeshLib
21{
23{
24 explicit MeshNodalCoordinatesBackend(std::vector<Node*> const& nodes);
25
26 double map(vtkIdType idx) const;
27 void mapTuple(vtkIdType tupleId, double* tuple) const;
28
29private:
30 std::vector<Node*> const& nodes_;
31};
32} // namespace MeshLib
MeshNodalCoordinatesBackend(std::vector< Node * > const &nodes)
void mapTuple(vtkIdType tupleId, double *tuple) const