17 #ifndef CLOUGHTOCHERINTERPOLATOR_H 18 #define CLOUGHTOCHERINTERPOLATOR_H 77 void init(
double x,
double y );
79 double calcBernsteinPoly(
int n,
int i,
int j,
int k,
double u,
double v,
double w );
Decorator class which adds the functionality of estimating normals at the data points.
double der2Y
Derivative in y-direction at point2.
Point3D point3
Third point of the triangle in x-,y-,z-coordinates.
double der3X
Derivative in x-direction at point3.
Point3D is a class to represent a three dimensional point.
Point3D lpoint2
Stores point2 of the last run.
Class Vector3D represents a 3D-Vector, capable to store x-,y- and z-coordinates in double values...
Point3D point1
First point of the triangle in x-,y-,z-coordinates.
This is an interface for interpolator classes for triangulations.
double der1X
Derivative in x-direction at point1.
double der3Y
Derivative in y-direction at point3.
virtual bool calcNormVec(double x, double y, Vector3D *result)=0
Calculates the normal vector and assigns it to vec.
Point3D point2
Second point of the triangle in x-,y-,z-coordinates.
This is an implementation of a Clough-Tocher interpolator based on a triangular tessellation.
virtual bool calcPoint(double x, double y, Point3D *result)=0
Performs a linear interpolation in a triangle and assigns the x-,y- and z-coordinates to point...
Point3D lpoint1
Stores point1 of the last run.
double ANALYSIS_EXPORT calcBernsteinPoly(int n, int i, double t)
Calculates the value of a Bernstein polynomial.
double der1Y
Derivative in y-direction at point1.
double mEdgeTolerance
Tolerance of the barycentric coordinates at the borders of the triangles (to prevent errors because o...
double der2X
Derivative in x-direction at point2.
Point3D lpoint3
Stores point3 of the last run.
NormVecDecorator * mTIN
Association with a triangulation object.