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
Pierre Fernbach
tsid
Commits
c8600af6
Commit
c8600af6
authored
Nov 24, 2017
by
andreadelprete
Browse files
[task-se3-equality] Fix small bug in computaiton of acceleration (just used for debugging)
parent
3b58fe9a
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/tasks/task-se3-equality.cpp
View file @
c8600af6
...
...
@@ -126,7 +126,7 @@ namespace tsid
Vector
TaskSE3Equality
::
getAcceleration
(
ConstRefVector
dv
)
const
{
return
m_constraint
.
matrix
()
*
dv
-
m_drift
.
toVector
();
return
m_constraint
.
matrix
()
*
dv
+
m_drift
.
toVector
();
}
const
ConstraintBase
&
TaskSE3Equality
::
getConstraint
()
const
...
...
Write
Preview
Markdown
is supported
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