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

@ -1,3 +1,3 @@
[default]
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r658 \cu(Mon 5 Dec 02:10:56 CET 2022)\c-";
SWWM_SHORTVER="\cw1.3pre r658 \cu(2022-12-05 02:10:56)\c-";
SWWM_MODVER="\cyDEMOLITIONIST \cw1.3pre r659 \cu(Mon 5 Dec 09:53:37 CET 2022)\c-";
SWWM_SHORTVER="\cw1.3pre r659 \cu(2022-12-05 09:53:37)\c-";

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;
}