Ensure probe points at the delta edge are kept
This commit is contained in:
parent
13e337ac4b
commit
d07d85ac9f
@ -3670,7 +3670,7 @@ inline void gcode_G28() {
|
|||||||
|
|
||||||
#if ENABLED(DELTA)
|
#if ENABLED(DELTA)
|
||||||
// Avoid probing outside the round or hexagonal area of a delta printer
|
// Avoid probing outside the round or hexagonal area of a delta printer
|
||||||
if (sq(xProbe) + sq(yProbe) > sq(DELTA_PROBEABLE_RADIUS)) continue;
|
if (sq(xProbe) + sq(yProbe) > sq(DELTA_PROBEABLE_RADIUS) + 0.1) continue;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
|
float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);
|
||||||
|
Loading…
Reference in New Issue
Block a user