Skip to content

Commit 2aa46e6

Browse files
committed
Adds -m to the help string
1 parent 39def86 commit 2aa46e6

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

linc/linc.testscript

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
: The $0 will expand to the executable name
1111
$* &linc.log >>"EOE"
1212
Usage:
13-
$0 <3d-model> <params> [-l layer-height-in-mm] [-o out-file-name] [-h|--help]
13+
$0 <3d-model> <params> [-l layer-height-in-mm] [-m margin] [-o out-file-name] [-h|--help]
1414

1515
-l Defaults to 1.0. The analysis will search for collisions at z-heights
1616
this far apart.

linc/main.c++

+1
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ auto main(int argc, char *argv[]) -> int {
2020
usage << "Usage:\n"
2121
<< *argv
2222
<< " <3d-model> <params> [-l layer-height-in-mm] "
23+
"[-m margin] "
2324
"[-o out-file-name] [-h|--help]\n";
2425
CommandLine args(usage.str());
2526
args.addArgument({"-l"}, &layerHeight,

0 commit comments

Comments
 (0)