Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef __TETRA_AFFINE_TRANSFORM_HXX__
00021 #define __TETRA_AFFINE_TRANSFORM_HXX__
00022
00023 #include "INTERPKERNELDefines.hxx"
00024
00025 #undef INVERSION_SELF_CHECK // debugging : check that calculated inverse is correct
00026
00027 namespace INTERP_KERNEL
00028 {
00034 class INTERPKERNEL_EXPORT TetraAffineTransform
00035 {
00036
00037 public:
00038 TetraAffineTransform(const double** pts);
00039
00040 void apply(double* destPt, const double* srcPt) const;
00041
00042 void reverseApply(double* destPt, const double* srcPt) const;
00043
00044 double determinant() const;
00045
00046 void dump() const;
00047
00048 private:
00049
00050 void invertLinearTransform();
00051
00052 void calculateDeterminant();
00053
00054 void factorizeLU(double* lu, int* idx) const;
00055
00056 void forwardSubstitution(double* x, const double* lu, const double* b, const int* idx) const;
00057
00058 void backwardSubstitution(double* x, const double* lu, const double* b, const int* idx) const;
00059
00060
00061
00062
00064 double _linear_transform[9];
00065
00067 double _translation[3];
00068
00070 double _determinant;
00071
00073 double _back_linear_transform[9];
00074
00076 double _back_translation[3];
00077
00078 };
00079 }
00080
00081 #endif