Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions src/args.rs
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,13 @@ pub fn print_detailed_help() {
\x1b[1mCommands\x1b[0m:
/load <filepath>: Load additional point cloud file
/clear: Remove all loaded points from the visualization
/export [filename] [--color|--html]: Export current view
- /export: Export plain text (no colors) with auto-generated filename
- /export filename.txt: Export plain text to specific file
- /export --color: Export with ANSI colors with auto-generated filename
- /export --html: Export as self-contained HTML with auto-generated filename
- /export filename.txt --color: Export with colors to specific file
- /export filename.html --html: Export as HTML to specific file
";

print!("{}", HELP_MSG);
Expand Down
Loading