Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Gabriele Buondonno
pinocchio
Commits
8e4ff872
Commit
8e4ff872
authored
Mar 24, 2016
by
Justin Carpentier
Browse files
Merge pull request #137 from nim65s/devel
Expose local_frame bool in RobotWrapper's jacobian proxy
parents
d6068a97
c8e42a6d
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/python/robot_wrapper.py
View file @
8e4ff872
...
...
@@ -109,8 +109,8 @@ class RobotWrapper(object):
se3
.
forwardKinematics
(
self
.
model
,
self
.
data
,
q
,
v
,
a
)
return
self
.
data
.
a
[
index
]
def
jacobian
(
self
,
q
,
index
,
update_geometry
=
True
):
return
se3
.
jacobian
(
self
.
model
,
self
.
data
,
q
,
index
,
Tru
e
,
update_geometry
)
def
jacobian
(
self
,
q
,
index
,
update_geometry
=
True
,
local_frame
=
True
):
return
se3
.
jacobian
(
self
.
model
,
self
.
data
,
q
,
index
,
local_fram
e
,
update_geometry
)
def
computeJacobians
(
self
,
q
):
return
se3
.
computeJacobians
(
self
.
model
,
self
.
data
,
q
)
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment