I swear I'm not dyslexic.

This commit is contained in:
Mari the Deer 2022-12-05 09:53:37 +01:00
commit 375d28ae41
2 changed files with 3 additions and 3 deletions

View file

@ -252,7 +252,7 @@ Class SWWMUtility
// new GetAxes
static clearscope Vector3, Vector3, Vector3 GetAxes( double angle, double pitch, double roll )
{
Vector3 x = (1,0,0), y = (0,-1,0), z = (0,0,1); // right-handed Y
Vector3 x = (1,0,0), y = (0,-1,0), z = (0,0,1); // left-handed Y
Quat r = Quat.FromAngles(angle,pitch,roll);
return r*x,r*y,r*z;
}