Remove non-special comments
This commit is contained in:
parent
613a3be167
commit
c43235dd39
|
@ -223,9 +223,6 @@ void plan_arc(
|
||||||
planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
|
planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
// As far as the parser is concerned, the position is now == target. In reality the
|
|
||||||
// motion control system might still be processing the action and the real tool position
|
|
||||||
// in any intermediate location.
|
|
||||||
COPY(current_position, cart);
|
COPY(current_position, cart);
|
||||||
} // plan_arc
|
} // plan_arc
|
||||||
|
|
||||||
|
|
|
@ -29,10 +29,6 @@
|
||||||
|
|
||||||
void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
|
void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
|
||||||
cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
|
cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
|
||||||
|
|
||||||
// As far as the parser is concerned, the position is now == destination. In reality the
|
|
||||||
// motion control system might still be processing the action and the real tool position
|
|
||||||
// in any intermediate location.
|
|
||||||
COPY(current_position, cart);
|
COPY(current_position, cart);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue