Skip to content

Commit

Permalink
add option reduce_vertices
Browse files Browse the repository at this point in the history
  • Loading branch information
Ylannl committed Mar 17, 2023
1 parent 3ae353a commit a7e3661
Show file tree
Hide file tree
Showing 2 changed files with 244 additions and 232 deletions.
3 changes: 3 additions & 0 deletions src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,9 @@ pub struct Cli {
/// Path to the geoflow executable for clipping and exporting the gltf files.
#[arg(long, value_parser = existing_path)]
pub exe_geof: Option<PathBuf>,
/// Use mesh simplification to reduce the number of vertices per object by this fraction. Value should be a float between 0.0 and 1.0. Ignored for building object types.
#[arg(long, default_value = "0.95")]
pub reduce_vertices: Option<f64>,
/// LoD to use in output for Building features
#[arg(long)]
pub lod_building: Option<String>,
Expand Down
Loading

0 comments on commit a7e3661

Please sign in to comment.