Merge pull request #4398 from gudnimg/minor-opt-offset
optimisation: Remove unused Z offset
This commit is contained in:
commit
c92c0fda38
|
|
@ -267,7 +267,7 @@ const char axis_codes[NUM_AXIS] = {'X', 'Y', 'Z', 'E'};
|
||||||
float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
float destination[NUM_AXIS] = { 0.0, 0.0, 0.0, 0.0};
|
||||||
|
|
||||||
// For tracing an arc
|
// For tracing an arc
|
||||||
static float offset[3] = {0.0, 0.0, 0.0};
|
static float offset[2] = {0.0, 0.0};
|
||||||
|
|
||||||
// Current feedrate
|
// Current feedrate
|
||||||
float feedrate = 1500.0;
|
float feedrate = 1500.0;
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue