Removed extraneous comment in customrotation.cpp.

ver1_6_1
Chris Laurel 2008-05-19 21:35:32 +00:00
parent b202cf405e
commit a7b31c4dc5
1 changed files with 1 additions and 1 deletions

View File

@ -69,7 +69,7 @@ public:
double inclination = 90.0 - poleDec;
if (flipped)
return Quatd::xrotation(PI) * Quatd::xrotation(degToRad(-inclination)) * Quatd::yrotation(degToRad(-node));// * Quatd::xrotation(-PI);
return Quatd::xrotation(PI) * Quatd::xrotation(degToRad(-inclination)) * Quatd::yrotation(degToRad(-node));
else
return Quatd::xrotation(degToRad(-inclination)) * Quatd::yrotation(degToRad(-node));
}