VM2D  1.12
Vortex methods for 2D flows simulation
AirfoilGeometry.h
Go to the documentation of this file.
1 #ifndef AIRFOILGEOMETRY_H_
2 #define AIRFOILGEOMETRY_H_
3 
4 #include "numvector.h"
5 #include "Point2D.h"
6 
7 namespace VMlib
8 {
9  struct GeomPoint
10  {
11  //private:
13  std::string type;
14  //public:
15 
16  GeomPoint() {};
17 
18  GeomPoint(const Point2D& _r, const std::string& _type)
19  : r(_r), type(_type) { }
20 
21  ~GeomPoint() {};
22  };
23 }
24 
25 using VMlib::GeomPoint;
26 
27 #endif
Описание класса numvector.
Заголовочный файл с описанием класса Point2D.
GeomPoint(const Point2D &_r, const std::string &_type)
Класс, опеделяющий двумерный вектор
Definition: Point2D.h:75
std::string type