ls1-MarDyn
ls1-MarDyn molecular dynamics code
VTKGridVertex.h
1/*
2 * VTKGridVertex.h
3 *
4 * @Date: 20.09.2010
5 * @Author: eckhardw
6 */
7
8#ifndef VTKGRIDVERTEX_H_
9#define VTKGRIDVERTEX_H_
10
15
16private:
18 double _coordinates[3];
19
27 int _index;
28
29public:
30
32
33 virtual ~~VTKGridVertex();
34
35 const double* getCoordinates() const;
36
37 void setIndex(int index);
38
39 int getIndex() const;
40
41 void setCoordinates(double x, double y, double z);
42};
43
44#endif /* VTKGRIDVERTEX_H_ */
Definition: VTKGridVertex.h:14