Skip to content
Snippets Groups Projects
Commit e5199940 authored by Mária Kocúreková's avatar Mária Kocúreková
Browse files

fix Quaternion

parent c8298568
No related branches found
No related tags found
No related merge requests found
......@@ -128,7 +128,6 @@ public final class Quaternion {
* @return a rotation matrix (4x4)
*/
public Matrix4d toMatrix(){
<<<<<<< HEAD
double xx = x * x;
double xy = x * y;
double xz = x * z;
......@@ -143,22 +142,7 @@ public final class Quaternion {
2 * ( xy - zw ), 1 - 2 * ( xx + zz ), 2 * ( yz + xw ), 0,
2 * ( xz + yw ), 2 * ( yz - xw ), 1 - 2 * ( xx + yy ), 0,
0, 0,0, 1);
=======
double xx = x * x;
double xy = x * y;
double xz = x * z;
double xw = x * w;
double yy = y * y;
double yz = y * z;
double yw = y * w;
double zz = z * z;
double zw = z * w;
return new Matrix4d(1 - 2 * ( yy + zz ),2 * ( xy + zw), 2 * ( xz - yw),0,
2 * ( xy - zw ), 1 - 2 * ( xx + zz ), 2 * ( yz + xw ), 0,
2 * ( xz + yw ), 2 * ( yz - xw ), 1 - 2 * ( xx + yy ), 0,
0, 0,0, 1);
>>>>>>> 1d9816fc2b5d38ad345c195f2913fb8adf5a5de1
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment