HLR  0.0.1
InterpolatingAnglePlanner.hpp
1 #ifndef KINEMATICS_INTERPOLATINGANGLEPLANNER_HPP
2 #define KINEMATICS_INTERPOLATINGANGLEPLANNER_HPP
3 
4 #include "Planner.hpp"
5 #include <Kinematics/Matrix.hpp>
6 
7 namespace HLR
8 {
9 namespace Kinematics
10 {
11 namespace Planners
12 {
17 {
18 public:
22  ~InterpolatingAnglePlanner() override = default;
23 
29 
35 
42  delete;
43 
50  delete;
51 
60  InterpolatingAnglePlanner(double max_step_size);
61 
62  const std::optional<std::vector<Matrix<double, 5, 1>>> get_path(
63  const Matrix<double, 5, 1>& current_state,
64  const Matrix<double, 3, 1>& target_pos) const override;
65 
66 private:
70  double max_step_size;
71 };
72 }
73 }
74 }
75 #endif
InterpolatingAnglePlanner & operator=(const InterpolatingAnglePlanner &p)=delete
Copy assignment operator, deleted.
Abstract class that forces.
Definition: Planner.hpp:17
Abstract class that forces.
Definition: InterpolatingAnglePlanner.hpp:16
~InterpolatingAnglePlanner() override=default
Pure virtual destructor.
InterpolatingAnglePlanner(const InterpolatingAnglePlanner &p)=delete
Copy constructor, deleted.
Create a matrix with numerical values.
Definition: Matrix.hpp:22
const std::optional< std::vector< Matrix< double, 5, 1 > > > get_path(const Matrix< double, 5, 1 > &current_state, const Matrix< double, 3, 1 > &target_pos) const override
Calculate a path between a start position and the target position.