Skip to content
Snippets Groups Projects
Commit 1b3837f1 authored by Wuttke, Joachim's avatar Wuttke, Joachim
Browse files

rm unused vars from RotMatrix

parent 5a61ec54
No related branches found
No related tags found
1 merge request!867Replace Eigen by classes Spinor, SpinMatrix of our own
......@@ -55,10 +55,8 @@ RotMatrix RotMatrix::createRotateEuler(double alpha, double beta, double gamma)
void RotMatrix::calculateEulerAngles(double* p_alpha, double* p_beta, double* p_gamma) const
{
double m00 = (-1 + 2 * x * x + 2 * s * s);
// double m01 = 2 * (x * y - z * s);
double m02 = 2 * (x * z + y * s);
double m10 = 2 * (y * x + z * s);
// double m11 = (-1 + 2 * y * y + 2 * s * s);
double m12 = 2 * (y * z - x * s);
double m20 = 2 * (z * x - y * s);
double m21 = 2 * (z * y + x * s);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment