formatting

This commit is contained in:
Simen Svale Skogsrud 2011-02-11 00:57:29 +01:00
parent 480f898c2b
commit 80afa2f403

View File

@ -27,9 +27,8 @@
// Execute linear motion in absolute millimeter coordinates. Feed rate given in millimeters/second // Execute linear motion in absolute millimeter coordinates. Feed rate given in millimeters/second
// unless invert_feed_rate is true. Then the feed_rate means that the motion should be completed in // unless invert_feed_rate is true. Then the feed_rate means that the motion should be completed in
// (1 minute)/feed_rate time. // (1 minute)/feed_rate time.
// void mc_line(double x, double y, double z, double feed_rate, int invert_feed_rate); #define mc_line(x, y, z, feed_rate, invert_feed_rate) plan_buffer_line(x, y, z, feed_rate, invert_feed_rate)
#define mc_line(x, y, z, feed_rate, invert_feed_rate) plan_buffer_line(x,y,z,feed_rate,invert_feed_rate) // NOTE: Although this function structurally belongs in this module, there is nothing to to but
// Note: Although this function structurally belongs in this module, there is nothing to to but
// to forward the request to the planner. For efficiency the function is replaced with a macro that // to forward the request to the planner. For efficiency the function is replaced with a macro that
// just forwards the call to the planner. // just forwards the call to the planner.