updated firmware
This commit is contained in:
parent
9891b8ed44
commit
f17ca0c820
11 changed files with 273 additions and 56 deletions
|
|
@ -64,7 +64,6 @@ class CartesianPathSegment {
|
|||
|
||||
void evaluate(float time, Pose6DF& pose) const;
|
||||
float get_duration() const;
|
||||
|
||||
void compute_motion_profile();
|
||||
|
||||
public:
|
||||
|
|
@ -76,6 +75,10 @@ class CartesianPathSegment {
|
|||
LinearAngular end_velocity;
|
||||
LinearAngular max_acceleration;
|
||||
|
||||
LinearAngular max_velocity_delta;
|
||||
Vec3F translation_delta_normalized;
|
||||
//Vec3F rotation_delta_axis;
|
||||
|
||||
LinearAngular travel_distance;
|
||||
MotionProfileConstAcc motion_profile;
|
||||
|
||||
|
|
@ -121,8 +124,9 @@ class JointSpacePathSegmentGenerator {
|
|||
float time_step
|
||||
);
|
||||
|
||||
void reset();
|
||||
bool generate_next(JointSpacePathSegment& js_path_segment);
|
||||
void reset();
|
||||
bool generate_next(JointSpacePathSegment& js_path_segment);
|
||||
const CartesianPathSegment* get_path_segment() const;
|
||||
|
||||
private:
|
||||
float delta_time; // time step size
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue