franky.CartesianVelocityWaypoint

class franky.CartesianVelocityWaypoint

Bases: pybind11_object

A waypoint with a target and optional parameters.

Template Args:

TargetType: The type of the target.

__init__(self: franky._franky.CartesianVelocityWaypoint, target: franky._franky.RobotVelocity, relative_dynamics_factor: franky._franky.RelativeDynamicsFactor = 1.0, minimum_time: franky._franky.Duration | None = None, hold_target_duration: franky._franky.Duration = Duration(0), max_total_duration: franky._franky.Duration | None = None) None
property hold_target_duration

For how long to hold the target of this waypoint after it has been reached.

property max_total_duration

The maximum time to try reaching this waypoint before moving on to the next waypoint. Default is infinite.

property minimum_time

The minimum time to reach this waypoint. This value is ignored when the effective relative dynamics factor has max_dynamics() set.

property relative_dynamics_factor

The relative dynamics factor for this waypoint. This factor will get multiplied with the robot’s global dynamics factor and the motion dynamics factor to get the actual dynamics factor for this waypoint.

property target

The target of this waypoint.