소스 검색

Fix 3-point middle point (#18383)

MoellerDi 4 년 전
부모
커밋
3bfbd47c6d
No account linked to committer's email address
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…
취소
저장