Browse Source

Ensure probe points at the delta edge are kept

Scott Lahteine 8 years ago
parent
commit
d07d85ac9f
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      Marlin/Marlin_main.cpp

+ 1
- 1
Marlin/Marlin_main.cpp View File

@@ -3670,7 +3670,7 @@ inline void gcode_G28() {
3670 3670
 
3671 3671
           #if ENABLED(DELTA)
3672 3672
             // Avoid probing outside the round or hexagonal area of a delta printer
3673
-            if (sq(xProbe) + sq(yProbe) > sq(DELTA_PROBEABLE_RADIUS)) continue;
3673
+            if (sq(xProbe) + sq(yProbe) > sq(DELTA_PROBEABLE_RADIUS) + 0.1) continue;
3674 3674
           #endif
3675 3675
 
3676 3676
           float measured_z = probe_pt(xProbe, yProbe, stow_probe_after_each, verbose_level);

Loading…
Cancel
Save