Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Guilhem Saurel
hpp-fcl
Commits
0fef5b66
Verified
Commit
0fef5b66
authored
Dec 09, 2019
by
Justin Carpentier
Browse files
math: remove not used lines
parent
5fa85553
Changes
1
Hide whitespace changes
Inline
Side-by-side
include/hpp/fcl/math/transform.h
View file @
0fef5b66
...
...
@@ -55,17 +55,6 @@ static inline std::ostream& operator << (std::ostream& o, const Quaternion3f& q)
return
o
;
}
inline
bool
isQuatIdentity
(
const
Quaternion3f
&
q
)
{
return
(
q
.
w
()
==
1
||
q
.
w
()
==
-
1
)
&&
q
.
x
()
==
0
&&
q
.
y
()
==
0
&&
q
.
z
()
==
0
;
}
inline
bool
areQuatEquals
(
const
Quaternion3f
&
q1
,
const
Quaternion3f
&
q2
)
{
return
(
q1
.
w
()
==
q2
.
w
()
&&
q1
.
x
()
==
q2
.
x
()
&&
q1
.
y
()
==
q2
.
y
()
&&
q1
.
z
()
==
q2
.
z
())
||
(
q1
.
w
()
==
-
q2
.
w
()
&&
q1
.
x
()
==
-
q2
.
x
()
&&
q1
.
y
()
==
-
q2
.
y
()
&&
q1
.
z
()
==
-
q2
.
z
());
}
/// @brief Simple transform class used locally by InterpMotion
class
Transform3f
{
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment