From 56a5513a0ff54bf96061e8ba321955d67bc15dfe Mon Sep 17 00:00:00 2001 From: Benedikt Schwab Date: Thu, 27 Jul 2023 07:45:24 +0200 Subject: [PATCH] fixed formatting --- .../main/kotlin/io/rtron/cli/SubcommandOpendriveToCitygml.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rtron-cli/src/main/kotlin/io/rtron/cli/SubcommandOpendriveToCitygml.kt b/rtron-cli/src/main/kotlin/io/rtron/cli/SubcommandOpendriveToCitygml.kt index 4328d40c..e56f0c40 100644 --- a/rtron-cli/src/main/kotlin/io/rtron/cli/SubcommandOpendriveToCitygml.kt +++ b/rtron-cli/src/main/kotlin/io/rtron/cli/SubcommandOpendriveToCitygml.kt @@ -75,9 +75,9 @@ class SubcommandOpendriveToCitygml : CliktCommand(name = "opendrive-to-citygml", private val discretizationStepSize by option(help = "distance between each discretization step for curves and surfaces").double() .default(Roadspaces2CitygmlParameters.DEFAULT_DISCRETIZATION_STEP_SIZE) private val sweepDiscretizationStepSize by option(help = "distance between each discretization step for solid geometries of ParametricSweep3D").double() - .default(Roadspaces2CitygmlParameters.DEFAULT_SWEEP_DISCRETIZATION_STEP_SIZE) + .default(Roadspaces2CitygmlParameters.DEFAULT_SWEEP_DISCRETIZATION_STEP_SIZE) private val circleSlices by option(help = "number of discretization points for a circle or cylinder").int() - .default(Roadspaces2CitygmlParameters.DEFAULT_CIRCLE_SLICES) + .default(Roadspaces2CitygmlParameters.DEFAULT_CIRCLE_SLICES) private val generateRandomGeometryIds by option(help = "true, if random ids shall be generated for the gml geometries").flag() private val transformAdditionalRoadLines by option(help = "if true, additional road lines, such as the reference line, lane boundaries, etc., are also transformed").flag()