Im reading the documentation and im learning about the euler angles, the rotate() function use euler as default? or quaternions, because when i rotate a cube and rotate it again all the axis rotate as well.

  • xyz replied to this.

    elmrganzo rotate(axis, angle) uses quaternions. You should generally avoid euler angles for anything but trivial rotations. If you need to handle complex orientation in 3D space, always use quaternions.