wrong assignment in path planner constructor fixed
This commit is contained in:
parent
171d098f9c
commit
e14da68a61
1 changed files with 2 additions and 2 deletions
|
|
@ -13,8 +13,8 @@
|
|||
#include <algorithm>
|
||||
|
||||
PathPlanner::PathPlanner(IKinemtaicModel* kinematic_model, float time_step) {
|
||||
segment_time_step = time_step;
|
||||
kinematic_model = kinematic_model;
|
||||
PathPlanner::segment_time_step = time_step;
|
||||
PathPlanner::kinematic_model = kinematic_model;
|
||||
|
||||
junction_deviation.linear = 0.0001; // mm
|
||||
junction_deviation.angular = 0.001; // rad
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue