Browse Source

Remove non-special comments

Scott Lahteine 7 years ago
parent
commit
c43235dd39
2 changed files with 0 additions and 7 deletions
  1. 0
    3
      Marlin/src/gcode/motion/G2_G3.cpp
  2. 0
    4
      Marlin/src/gcode/motion/G5.cpp

+ 0
- 3
Marlin/src/gcode/motion/G2_G3.cpp View File

223
     planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
223
     planner.buffer_line_kinematic(cart, fr_mm_s, active_extruder);
224
   #endif
224
   #endif
225
 
225
 
226
-  // As far as the parser is concerned, the position is now == target. In reality the
227
-  // motion control system might still be processing the action and the real tool position
228
-  // in any intermediate location.
229
   COPY(current_position, cart);
226
   COPY(current_position, cart);
230
 } // plan_arc
227
 } // plan_arc
231
 
228
 

+ 0
- 4
Marlin/src/gcode/motion/G5.cpp View File

29
 
29
 
30
 void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
30
 void plan_cubic_move(const float (&cart)[XYZE], const float (&offset)[4]) {
31
   cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
31
   cubic_b_spline(current_position, cart, offset, MMS_SCALED(feedrate_mm_s), active_extruder);
32
-
33
-  // As far as the parser is concerned, the position is now == destination. In reality the
34
-  // motion control system might still be processing the action and the real tool position
35
-  // in any intermediate location.
36
   COPY(current_position, cart);
32
   COPY(current_position, cart);
37
 }
33
 }
38
 
34
 

Loading…
Cancel
Save