spatial_distribution2d.hpp
Go to the documentation of this file.
1 
6 #ifndef SPATIAL_DISTRIBUTION_2D_HPP
7 #define SPATIAL_DISTRIBUTION_2D_HPP 1
8 
9 #include "../../tessellation/tessellation.hpp"
10 
13 {
14 public:
15 
20  virtual double operator()(const Vector2D& point) const = 0;
21 
22  virtual ~SpatialDistribution(void);
23 };
24 
25 #endif // SPATIAL_DISTRIBUTION_2D_HPP
Spatial distribution for initial conditions.
2D Mathematical vector
Definition: geometry.hpp:15
virtual double operator()(const Vector2D &point) const =0
Evaluates the function.