diff --git a/include/Utils/quadricRGBfunctions.hpp b/include/Utils/quadricRGBfunctions.hpp index cce03e5436c1394d2f7034c98ae461d4ccde2b37..8aedc9678a61d661cc2f284dc31770921f1d8331 100644 --- a/include/Utils/quadricRGBfunctions.hpp +++ b/include/Utils/quadricRGBfunctions.hpp @@ -51,16 +51,15 @@ QuadricRGBfunctions::QuadricRGBfunctions(const QuadricRGBfunctions& q) { template QuadricRGBfunctions::QuadricRGBfunctions(const RGBFUNCTIONS& cf, const REAL gamma, const REAL alpha) { - MATRIX66 R1,R2_A,R2_b,R2_c; + MATRIX66 R1,R2_b,R2_c; buildRotateMatrix(R1,gamma); // Rotation 1 - buildIntegralMatrix_A(R2_A,alpha); // Parameterized integral matrix A + buildIntegralMatrix_A(A,alpha); // Parameterized integral matrix A buildIntegralMatrix_b(R2_b,alpha); // Parameterized integral matrix b buildIntegralMatrix_c(R2_c,alpha); // Parameterized integral matrix c // Quadric (A,b,c) => L*A*Lt - 2*b*Lt + c = ERROR - A = R2_A ; // Matrix A : integral for (unsigned col = RED; col < BLUE+1; ++col) { Geom::Vector<6,REAL> function; // get function coefficients