edge_velocity_calculator.hpp
1 #ifndef EDGE_VELOCITY_CALCULATOR_HPP
2 #define EDGE_VELOCITY_CALCULATOR_HPP 1
3 
4 #include "../../tessellation/tessellation.hpp"
5 
8 {
9 public:
10 
16  virtual vector<Vector2D> operator()
17  (const Tessellation& tess,
18  const vector<Vector2D>& point_velocities) const = 0;
19 
20  virtual ~EdgeVelocityCalculator(void);
21 };
22 
23 #endif // EDGE_VELOCITY_CALCULATOR_HPP
Abstract class for tessellation.
Base class for a scheme to calculate the velocity on the edges.