Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Analyst WebApp
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Package registry
Container Registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
fidentis
Analyst WebApp
Commits
e5199940
There was an error fetching the commit references. Please try again later.
Commit
e5199940
authored
3 years ago
by
Mária Kocúreková
Browse files
Options
Downloads
Patches
Plain Diff
fix Quaternion
parent
c8298568
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
Comparison/src/main/java/cz/fidentis/analyst/icp/Quaternion.java
+1
-17
1 addition, 17 deletions
...son/src/main/java/cz/fidentis/analyst/icp/Quaternion.java
with
1 addition
and
17 deletions
Comparison/src/main/java/cz/fidentis/analyst/icp/Quaternion.java
+
1
−
17
View file @
e5199940
...
...
@@ -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
);
>>>>>>>
1
d9816fc2b5d38ad345c195f2913fb8adf5a5de1
}
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment