mirror of https://github.com/CGAL/cgal
32 lines
420 B
C++
32 lines
420 B
C++
#ifndef CGAL_SIZING_FIELD_2_H
|
|
#define CGAL_SIZING_FIELD_2_H
|
|
|
|
#include <list>
|
|
|
|
#include <CGAL/basic.h>
|
|
#include <CGAL/Cartesian.h>
|
|
|
|
namespace CGAL
|
|
{
|
|
|
|
template <typename Kernel>
|
|
class Sizing_field_2 // pure virtual class
|
|
{
|
|
public:
|
|
typedef Point_2<Kernel> Point;
|
|
|
|
public:
|
|
Sizing_field_2()
|
|
{
|
|
}
|
|
virtual ~Sizing_field_2()
|
|
{
|
|
}
|
|
|
|
virtual double query(const Point& p) const = 0;
|
|
};
|
|
|
|
}//namespace CGAL
|
|
|
|
#endif
|