Most interpolation functions are parameterized by a traits class that defines the primitives used in the interpolation algorithms. The concept InterpolationTraits defines this common set of requirements.
| |
The number type must follow the model
FieldNumberType.
| |
| |
The point type on
which the function is defined and interpolated.
| |
| |
The corresponding vector type.
| |
| |
A constructor object for
Vector_d.
Provides : Vector_d operator() (Point_d a, Point_d b) which produces the vector b - a and Vector_d operator() (Null_vector NULL_VECTOR) which introduces the null vector.
| |
| |
Constructor object for
Vector_d.
Provides : Vector_d operator() (Vector_d v,FT scale) which produces the vector v scaled by a factor scale.
| |
| |
Constructor
object for FT. Provides the operator: FT operator() (Point_d a, Point_d b) returning the squared distance between a and b.
| |
| |
default constructor.
|
|
| |
| ||
| ||
| ||
|