Franky 0.12.0
A High-Level Motion API for Franka
Loading...
Searching...
No Matches
joint_state.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <Eigen/Core>
4
7
8namespace franky {
9
16 public:
17 // Suppress implicit conversion warning
18#pragma clang diagnostic push
19#pragma clang diagnostic ignored "-Wimplicit-conversion"
25 JointState(Vector7d position) : position_(std::move(position)), velocity_(Vector7d::Zero()) {}
26#pragma clang diagnostic pop
27
33 : position_(std::move(position)), velocity_(std::move(velocity)) {}
34
35 JointState(const JointState &) = default;
36
37 JointState() = default;
38
42 [[nodiscard]] inline Vector7d position() const {
43 return position_;
44 }
45
49 [[nodiscard]] inline Vector7d velocity() const {
50 return velocity_;
51 }
52
53 friend std::ostream& operator<<(std::ostream& os, const JointState& joint_state);
54
55 private:
56 Vector7d position_;
57 Vector7d velocity_;
58};
59
60inline std::ostream& operator<<(std::ostream& os, const JointState& joint_state) {
61 os << "JointState(position=" << joint_state.position_ << ", velocity=" << joint_state.velocity_ << ")";
62 return os;
63}
64
65} // namespace franky
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
JointState()=default
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