Skip to content

Robotic Arm's Global Waypoint Structure rm_waypoint_t

Constructor function

Python
rm_ctypes_wrap.rm_waypoint_t.__init__(self, point_name: str = None, joint: list[float] = None, pose: list[float] = None, work_frame: str = None, tool_frame: str = None, time: str = ''):

Parameter description:

ParameterTypeDescription
point_namestr, optionalWaypoint name, default: None.
jointlist[float], optionalJoint angle list, length: 7, unit: °, default: None.
poselist[float], optionalPose, including position and Euler angle, default: None. The list should be generated in the format of [x, y, z, rx, ry, rz], where [x, y, z] is the position and [rx, ry, rz] is the Euler angle.
work_framestr, optionalWork frame name, default: None.
tool_framestr, optionalTool frame name, default: None.
timestr, optionalWaypoint addition or modification time, default: None.

Member function

Python
rm_ctypes_wrap.rm_waypoint_t.to_dict (self)

Return the class variables as dictionaries