18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wimplicit-conversion"
26#pragma clang diagnostic pop
61 os <<
"JointState(position=" << joint_state.position_ <<
", velocity=" << joint_state.velocity_ <<
")";
Joint state of a robot.
Definition joint_state.hpp:15
friend std::ostream & operator<<(std::ostream &os, const JointState &joint_state)
Definition joint_state.hpp:60
Vector7d velocity() const
The velocity component of the state.
Definition joint_state.hpp:49
JointState(const JointState &)=default
JointState(Vector7d position)
Construct a joint state with the given joint positions and zero velocities.
Definition joint_state.hpp:25
JointState(Vector7d position, Vector7d velocity)
Definition joint_state.hpp:32
Vector7d position() const
The position component of the state.
Definition joint_state.hpp:42
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:12