From cbf941c0114191e3abf27e47b2cd43549b7259e1 Mon Sep 17 00:00:00 2001 From: Ravi Peters Date: Fri, 17 Mar 2023 11:03:47 +0100 Subject: [PATCH] sensible defailt value for reduce_vertices --- src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cli.rs b/src/cli.rs index 359c4ae..659187c 100644 --- a/src/cli.rs +++ b/src/cli.rs @@ -82,7 +82,7 @@ pub struct Cli { #[arg(long, value_parser = existing_path)] pub exe_geof: Option, /// 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")] + #[arg(long, default_value = "0.05")] pub reduce_vertices: Option, /// LoD to use in output for Building features #[arg(long)]