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
pinocchio
Commits
8a6901e8
Verified
Commit
8a6901e8
authored
Apr 25, 2020
by
Guilhem Saurel
Committed by
Justin Carpentier
May 12, 2020
Browse files
[Python] use older dIntegrate API
parent
7021a83b
Changes
1
Hide whitespace changes
Inline
Side-by-side
bindings/python/algorithm/expose-joints.cpp
View file @
8a6901e8
...
...
@@ -30,8 +30,8 @@ namespace pinocchio
Eigen
::
MatrixXd
J0
(
Eigen
::
MatrixXd
::
Zero
(
model
.
nv
,
model
.
nv
));
Eigen
::
MatrixXd
J1
(
Eigen
::
MatrixXd
::
Zero
(
model
.
nv
,
model
.
nv
));
dIntegrate
(
model
,
q
,
v
,
J0
,
ARG0
,
SETTO
);
dIntegrate
(
model
,
q
,
v
,
J1
,
ARG1
,
SETTO
);
dIntegrate
(
model
,
q
,
v
,
J0
,
ARG0
);
dIntegrate
(
model
,
q
,
v
,
J1
,
ARG1
);
return
bp
::
make_tuple
(
J0
,
J1
);
}
...
...
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