aboutsummaryrefslogtreecommitdiffstats
path: root/docs/G-Codes.md
diff options
context:
space:
mode:
authorAndrew Mirsky <andrew@mirsky.net>2022-11-22 23:22:46 -0500
committerKevinOConnor <kevin@koconnor.net>2022-12-11 20:55:59 -0500
commit0c5c87d7c08c2b8aa2f248d81dd1003c5c7d5a7c (patch)
tree25310c0bb94995633aad96c67f96848478481f36 /docs/G-Codes.md
parentc7f323e863eb73f3f50e28729b04f302bf8e3c6a (diff)
downloadkutter-0c5c87d7c08c2b8aa2f248d81dd1003c5c7d5a7c.tar.gz
kutter-0c5c87d7c08c2b8aa2f248d81dd1003c5c7d5a7c.tar.xz
kutter-0c5c87d7c08c2b8aa2f248d81dd1003c5c7d5a7c.zip
gcode_arcs: support XY, XZ and YZ planes
add G17, G18 and G19 commands to select arc planes enhance G2/G3 to support arc moves in XY, XZ and YZ planes Signed-off-by: Andrew Mirsky <andrew@mirsky.net>
Diffstat (limited to 'docs/G-Codes.md')
-rw-r--r--docs/G-Codes.md5
1 files changed, 3 insertions, 2 deletions
diff --git a/docs/G-Codes.md b/docs/G-Codes.md
index d9cefd80..137d14ba 100644
--- a/docs/G-Codes.md
+++ b/docs/G-Codes.md
@@ -549,8 +549,9 @@ clears any error state from the micro-controller.
The following standard G-Code commands are available if a
[gcode_arcs config section](Config_Reference.md#gcode_arcs) is
enabled:
-- Controlled Arc Move (G2 or G3): `G2 [X<pos>] [Y<pos>] [Z<pos>]
- [E<pos>] [F<speed>] I<value> J<value>`
+- Arc Move Clockwise (G2), Arc Move Counter-clockwise (G3): `G2|G3 [X<pos>] [Y<pos>] [Z<pos>]
+ [E<pos>] [F<speed>] I<value> J<value>|I<value> K<value>|J<value> K<value>`
+- Arc Plane Select: G17 (XY plane), G18 (XZ plane), G19 (YZ plane)
### [gcode_macro]