Franky  0.9.1
A High-Level Motion API for Franka
stop_motion.hpp
Go to the documentation of this file.
1 #pragma once
2 
6 
7 namespace franky {
8 
9 template<typename ControlSignalType>
10 class StopMotion;
11 
15 template<>
17  public:
20  .target=JointState(Vector7d::Zero()),
21  .reference_type= ReferenceType::Relative,
22  .relative_dynamics_factor = RelativeDynamicsFactor::MAX_DYNAMICS()
23  }}) {}
24 };
25 
29 template<>
31  public:
33  {{
34  .target = RobotPose(Affine::Identity()),
35  .reference_type = ReferenceType::Relative,
36  .relative_dynamics_factor = RelativeDynamicsFactor::MAX_DYNAMICS()
37  }}) {}
38 };
39 
40 } // namespace franky
Cartesian waypoint motion.
Definition: cartesian_waypoint_motion.hpp:23
Joint state of a robot.
Definition: joint_state.hpp:17
Joint waypoint motion.
Definition: joint_waypoint_motion.hpp:19
static RelativeDynamicsFactor MAX_DYNAMICS()
Special factor which causes the maximum dynamics to be used, independent of other factors applied els...
Definition: relative_dynamics_factor.hpp:42
Cartesian pose of a robot.
Definition: robot_pose.hpp:16
StopMotion()
Definition: stop_motion.hpp:32
StopMotion()
Definition: stop_motion.hpp:18
Definition: stop_motion.hpp:10
Definition: gripper.cpp:3
@ CartesianPose
Definition: control_signal_type.hpp:13
@ JointPositions
Definition: control_signal_type.hpp:11
A waypoint with a target and optional parameters.
Definition: waypoint_motion.hpp:34
TargetType target
Definition: waypoint_motion.hpp:35