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
5ab6de89
Unverified
Commit
5ab6de89
authored
Apr 11, 2019
by
Andrea Del Prete
Committed by
GitHub
Apr 11, 2019
Browse files
Merge pull request #41 from jviereck/jviereck_fix_39
Remove duplicate useLocalFrame definition. Fixes regression from #39
parents
d5ed7beb
55dd66e6
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/python/tasks/task-se3-equality.hpp
View file @
5ab6de89
...
...
@@ -64,7 +64,6 @@ namespace tsid
.
def
(
"setMask"
,
&
TaskSE3EqualityPythonVisitor
::
setMask
,
bp
::
arg
(
"mask"
))
.
def
(
"compute"
,
&
TaskSE3EqualityPythonVisitor
::
compute
,
bp
::
args
(
"t"
,
"q"
,
"v"
,
"data"
))
.
def
(
"getConstraint"
,
&
TaskSE3EqualityPythonVisitor
::
getConstraint
)
.
def
(
"useLocalFrame"
,
&
TaskSE3EqualityPythonVisitor
::
useLocalFrame
,
bp
::
arg
(
"local_frame"
))
.
add_property
(
"frame_id"
,
&
TaskSE3
::
frame_id
,
"frame id return"
)
.
add_property
(
"name"
,
&
TaskSE3EqualityPythonVisitor
::
name
)
;
...
...
@@ -82,9 +81,6 @@ namespace tsid
math
::
ConstraintEquality
cons
(
self
.
getConstraint
().
name
(),
self
.
getConstraint
().
matrix
(),
self
.
getConstraint
().
vector
());
return
cons
;
}
static
void
useLocalFrame
(
TaskSE3
&
self
,
const
bool
local_frame
)
{
self
.
useLocalFrame
(
local_frame
);
}
static
void
setReference
(
TaskSE3
&
self
,
trajectories
::
TrajectorySample
&
ref
){
self
.
setReference
(
ref
);
}
...
...
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