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
Stack Of Tasks
eigenpy
Commits
750d69d4
Verified
Commit
750d69d4
authored
May 21, 2021
by
Justin Carpentier
Browse files
geometry: fix constructor from vector
parent
2c501960
Pipeline
#14647
passed with stage
in 9 minutes and 55 seconds
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
include/eigenpy/quaternion.hpp
View file @
750d69d4
...
...
@@ -277,7 +277,7 @@ namespace eigenpy
static
Quaternion
*
FromOneVector
(
const
Vector4
&
v
)
{
Quaternion
*
q
(
new
Quaternion
(
v
));
Quaternion
*
q
(
new
Quaternion
(
v
[
3
],
v
[
0
],
v
[
1
],
v
[
2
]
));
return
q
;
}
...
...
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