diff options
author | Aleksej Vasiljkovic <achmed21@gmail.com> | 2019-08-21 21:44:45 +0200 |
---|---|---|
committer | Kevin O'Connor <kevin@koconnor.net> | 2019-09-13 11:57:54 -0400 |
commit | 7d8c70363a4241ce7c16868e347d7c0f7855f5f3 (patch) | |
tree | ace28d1f34357fad4eb11fd92d245f51e512cdf5 /config/example-extras.cfg | |
parent | 60ae92d1432271993fb08eea92549226a6f1495d (diff) | |
download | kutter-7d8c70363a4241ce7c16868e347d7c0f7855f5f3.tar.gz kutter-7d8c70363a4241ce7c16868e347d7c0f7855f5f3.tar.xz kutter-7d8c70363a4241ce7c16868e347d7c0f7855f5f3.zip |
gcode_arcs: Add support for G2/G3 commands
R Still missing, also might be somewhat dirty since code is converted
into G1 commands.
Signed-off-by: Aleksej Vasiljkovic <achmed21@gmail.com>
Signed-off-by: Kevin O'Connor <kevin@koconnor.net>
Diffstat (limited to 'config/example-extras.cfg')
-rw-r--r-- | config/example-extras.cfg | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/config/example-extras.cfg b/config/example-extras.cfg index 98116151..e3c83186 100644 --- a/config/example-extras.cfg +++ b/config/example-extras.cfg @@ -1801,3 +1801,13 @@ # A list of G-Code commands to execute when the delay duration has # elapsed. G-Code templates are supported. This parameter must be # provided. + + +# enables arc (G2/G3) commands. Only IJ version is supported +# example: "G2 X125 Y32 Z10 E5 I10.5 J10.5" +#[gcode_arcs] +#resolution: 1.0 +# An Arc will be split in segments. Each segment will in x mm set here. +# Lower values will producse a finer arc, but also more to do for +# your machine. This also means that arcs smaller then this value +# will be a line only |