From 84aabf9543c7c6be3663e828aa9de2133e00391b Mon Sep 17 00:00:00 2001 From: Sameer Puri Date: Sun, 9 May 2021 18:11:56 -0400 Subject: [PATCH] add note about origin's effect on input gcode sequences --- src/main.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index 387396d..e29bd79 100644 --- a/src/main.rs +++ b/src/main.rs @@ -53,7 +53,8 @@ struct Opt { /// Output file path (overwrites old files), else writes to stdout #[structopt(short, long)] out: Option, - /// Set where the bottom left corner of the SVG will be placed + /// Set where the bottom left corner of the SVG will be placed. Also affects begin/end and + /// on/off sequences. #[structopt(long, default_value = "0,0")] origin: String, }