Removed Matrix4 as it was unused/unfinished

This commit is contained in:
DarkGuardsman 2013-09-02 15:38:54 -04:00
parent 3e9849b45e
commit 9f34cb4748
2 changed files with 3 additions and 12 deletions

View file

@ -1,9 +0,0 @@
package dark.prefab.helpers;
public class Matrix4
{
public Matrix4(float f, float g, float h, float i, float j, float k, float l, float m, float n, float o, float p, float q, float r, float s, float t, float u)
{
}
}

View file

@ -142,7 +142,7 @@ public class Quaternion
normalise();
}
// Convert to Matrix
/* Convert to Matrix
public Matrix4 getMatrix()
{
float x2 = (float) (x * x);
@ -160,7 +160,7 @@ public class Quaternion
// by
// OpenGL
return new Matrix4(1.0f - 2.0f * (y2 + z2), 2.0f * (xy - wz), 2.0f * (xz + wy), 0.0f, 2.0f * (xy + wz), 1.0f - 2.0f * (x2 + z2), 2.0f * (yz - wx), 0.0f, 2.0f * (xz - wy), 2.0f * (yz + wx), 1.0f - 2.0f * (x2 + y2), 0.0f, 0.0f, 0.0f, 0.0f, 1.0f);
}
}*/
// Convert to Axis/Angles
public void getAxisAngle(Vector3 axis, float angle)