瀏覽代碼

Fix 3-point middle point (#18383)

MoellerDi 4 年之前
父節點
當前提交
3bfbd47c6d
沒有連結到貢獻者的電子郵件帳戶。
共有 1 個檔案被更改,包括 1 行新增1 行删除
  1. 1
    1
      Marlin/src/module/probe.h

+ 1
- 1
Marlin/src/module/probe.h 查看文件

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

Loading…
取消
儲存