File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -38,6 +38,12 @@ async def move(
38
38
) -> bool :
39
39
"""Plan and execute a movement to move the component specified to its goal destination.
40
40
41
+ Note: Frames designated with respect to components can also be used as the `component_name` when calling for a move. This
42
+ technique allows for planning and moving the frame itself to the `destination`. To do so, simply override the `name` attribute
43
+ for a given resource with the originating ReferenceFrame. Then pass in the updated resource into the `component_name`. Ex:
44
+ resource = Arm.get_resource_name("arm")
45
+ resource.name = "externalFrame"
46
+ success = await MotionServiceClient.move(resource, ...)
41
47
42
48
Args:
43
49
component_name (ResourceName): Name of a component on a given robot.
You can’t perform that action at this time.
0 commit comments