Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Disney edge grasp integration #60

Open
wants to merge 9 commits into
base: master_Disney_MS5
Choose a base branch
from
20 changes: 20 additions & 0 deletions ec_grasp_planner/src/handarm_parameters.py
Original file line number Diff line number Diff line change
Expand Up @@ -348,6 +348,26 @@ def __init__(self, **kwargs):
self['edge_grasp']['object']['slide_velocity'] = np.array([0.125, 0.03])
self['edge_grasp']['object']['palm_edge_offset'] = 0

self['edge_grasp']['object']['pre_grasp_manifold'] = Manifold(
{'min_position_deltas': [-0.05, -0.05, -0.05],
'max_position_deltas': [0.05, 0.05, 0.05],
'min_orientation_deltas': [0, 0, 0],
'max_orientation_deltas': [0, 0, 0],
})

self['edge_grasp']['object']['go_down_manifold'] = Manifold({'min_position_deltas': [-0.01, -0.04, -0.05],
'max_position_deltas': [0.06, 0.04, 0.01],
'min_orientation_deltas': [0, 0, 0],
'max_orientation_deltas': [0, 0, 0]
})

self['edge_grasp']['object']['slide_to_edge_manifold'] = Manifold(
{'min_position_deltas': [-0.04, -0.04, -0.01],
'max_position_deltas': [0.04, 0.04, 0.01],
'min_orientation_deltas': [0, 0, 0],
'max_orientation_deltas': [0, 0, 0]
})


# EDGE GRASP
# ----------------------------------------------------------------------------
Expand Down
Loading