Created
February 14, 2020 19:34
-
-
Save wkentaro/97dc3181caf63d25362c7829e74f4f97 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| import skrobot | |
| panda = skrobot.models.Panda() | |
| viewer = skrobot.viewers.TrimeshSceneViewer() | |
| viewer.add(panda) | |
| viewer.show() | |
| jacobian = panda.rarm.calc_jacobian_from_link_list(panda.rarm.end_coords) | |
| print(jacobian) | |
| print(jacobian.shape) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.