Update the help text

This commit is contained in:
Matt McWilliams 2025-04-27 11:44:48 -04:00
parent fe1c0750a2
commit f703daaa27
3 changed files with 5 additions and 5 deletions

4
dist/index.js vendored
View File

@ -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' });

2
dist/index.js.map vendored

File diff suppressed because one or more lines are too long

View File

@ -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' });