Two half working commits!

- Python Drivers
  In Ipo Window "transform properties" Panel, added the buttons, and the
  initial handling (now only printing text). Willian makes it work!

- Better Matrix to Eul, code submitted by Brecht. No time yet to do it
  really nice (like a Mat3ToEulCompat(mat, eul, eulc))
This commit is contained in:
2005-10-30 20:56:19 +00:00
parent 99753a423f
commit 41c5328dd4
5 changed files with 134 additions and 98 deletions

View File

@@ -3332,12 +3332,9 @@ void compatible_eul(float *eul, float *oldrot)
if(dz > 0.0) eul[2] -= 2.0*M_PI; else eul[2]+= 2.0*M_PI;
}
/* this return was there from ancient days... i remove it now,
because axis-only rotations then work much nicer (try Y axis rotate
and check Y euler values).
Needed for new locking of transform values. (ton)
/* this return was there from ancient days... but why! probably because the code sucks :)
*/
/*return;*/
return;
/* calc again */
dx= eul[0] - oldrot[0];