Changes for page G90, G91: Задание режима абсолютных/относительных координат
Last modified by writer on 2023/02/09 18:31
Summary
-
Page properties (1 modified, 0 added, 0 removed)
Details
- Page properties
-
- Content
-
... ... @@ -1,13 +1,13 @@ 1 1 (% style="color:#a0be2d" %)//**G90**//(%%) – absolute positioning mode. In absolute positioning mode, the axis parameters usually indicate the position in the active coordinate system. 2 2 3 +{{code language="g-code" title="(% style=~"color:#a0be2d~" %)//**G90**//(%%)// example~~://"}} 4 +G90 (absolute position setting) 5 +G0 X2.5 (fast movement to position X2.5, taking into account all offsets) 6 +{{/code}} 7 + 3 3 (% style="color:#a0be2d" %)//**G91**//(%%) – incremental positioning mode. In incremental positioning mode, axis parameters usually indicate increments relative to the current position. 4 4 5 -(% style="color:#a0be2d" %)//**G90**//(%%)// example~:// 6 - 7 -(% style="color:#a0be2d" %)//**G90**//(%%) (absolute position setting) 8 -(% style="color:#a0be2d" %)//**G0 X2.5**//(%%) (fast movement to position X2.5, taking into account all offsets) 9 - 10 -(% style="color:#a0be2d" %)//**G91**//(%%)// example~:// 11 - 12 -(% style="color:#a0be2d" %)//**G91**//(%%) (incremental positioning reference) 13 -(% style="color:#a0be2d" %)//**G0 X2.5**//(%%) (fast movement of 2.5 along the X axis relative to the current position) 10 +{{code language="g-code" title="(% style=~"color:#a0be2d~" %)//**G91**//(%%)// example~~://"}} 11 +G91 (incremental positioning reference) 12 +G0 X2.5 (fast movement of 2.5 along the X axis relative to the current position) 13 +{{/code}}