Browse Source

Fix 3-point middle point (#18383)

vanilla_fb_2.0.x
MoellerDi 4 years ago
committed by GitHub
parent
commit
3bfbd47c6d
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      Marlin/src/module/probe.h

2
Marlin/src/module/probe.h

@ -190,7 +190,7 @@ public:
#else
points[0].set(min_x(), min_y());
points[1].set(max_x(), min_y());
points[2].set((max_x() - min_x()) / 2, max_y());
points[2].set((min_x() + max_x()) / 2, max_y());
#endif
#endif
}

Loading…
Cancel
Save