Update the help text
This commit is contained in:
parent
fe1c0750a2
commit
f703daaa27
|
@ -46,8 +46,8 @@ function cli() {
|
|||
parser.add_argument('output', { type: 'str', help: 'Output SVG to write' });
|
||||
parser.add_argument('--width', '-W', { type: 'int', default: WIDTH_DEFAULT, help: `Width of window to render STL (default: ${WIDTH_DEFAULT})` });
|
||||
parser.add_argument('--height', '-H', { type: 'int', default: HEIGHT_DEFAULT, help: `Height of window to render STL (default: ${HEIGHT_DEFAULT})` });
|
||||
parser.add_argument('--load-delay', '-l', { type: 'int', default: 0, help: 'Number of milliseconds to wait after loading (default: 0)' });
|
||||
parser.add_argument('--save-delay', '-s', { type: 'int', default: 0, help: 'Number of milliseconds to wait before saving (default: 0)' });
|
||||
parser.add_argument('--load-delay', '-l', { type: 'int', default: 0, help: 'Time (ms) to wait after loading (default: 0)' });
|
||||
parser.add_argument('--save-delay', '-s', { type: 'int', default: 0, help: 'Time (ms) to wait after saving (default: 0)' });
|
||||
parser.add_argument('--theta', '-t', { type: 'float', default: null, help: 'Theta of the camera' });
|
||||
parser.add_argument('--psi', '-p', { type: 'float', default: null, help: 'Psi of the camera' });
|
||||
parser.add_argument('--radius', '-r', { type: 'float', default: null, help: 'Radius of the camera' });
|
||||
|
|
File diff suppressed because one or more lines are too long
|
@ -52,8 +52,8 @@ function cli () : any {
|
|||
parser.add_argument('--height', '-H', { type : 'int', default : HEIGHT_DEFAULT, help : `Height of window to render STL (default: ${HEIGHT_DEFAULT})` });
|
||||
|
||||
|
||||
parser.add_argument('--load-delay', '-l', { type : 'int', default : 0, help : 'Number of milliseconds to wait after loading (default: 0)' });
|
||||
parser.add_argument('--save-delay', '-s', { type : 'int', default : 0, help : 'Number of milliseconds to wait before saving (default: 0)' });
|
||||
parser.add_argument('--load-delay', '-l', { type : 'int', default : 0, help : 'Time (ms) to wait after loading (default: 0)' });
|
||||
parser.add_argument('--save-delay', '-s', { type : 'int', default : 0, help : 'Time (ms) to wait after saving (default: 0)' });
|
||||
|
||||
parser.add_argument('--theta', '-t', { type : 'float', default : null, help : 'Theta of the camera' });
|
||||
parser.add_argument('--psi', '-p', { type : 'float', default : null, help : 'Psi of the camera' });
|
||||
|
|
Loading…
Reference in New Issue