19#pragma clang diagnostic push
20#pragma clang diagnostic ignored "-Wimplicit-conversion"
28#pragma clang diagnostic pop
58 os <<
"JointState(position=" << joint_state.position_ <<
", velocity=" << joint_state.velocity_ <<
")";
Joint state of a robot.
Definition joint_state.hpp:16
friend std::ostream & operator<<(std::ostream &os, const JointState &joint_state)
Definition joint_state.hpp:57
Vector7d velocity() const
The velocity component of the state.
Definition joint_state.hpp:48
JointState(const JointState &)=default
JointState(Vector7d position)
Construct a joint state with the given joint positions and zero velocities.
Definition joint_state.hpp:27
JointState(Vector7d position, Vector7d velocity)
Definition joint_state.hpp:34
Vector7d position() const
The position component of the state.
Definition joint_state.hpp:43
Definition dynamics_limit.cpp:8
std::ostream & operator<<(std::ostream &os, const DynamicsLimit< Vector7d > &limit)
Definition dynamics_limit.cpp:47
Eigen::Vector< double, 7 > Vector7d
Definition types.hpp:11