From cfd440dae9f5b1fc3c15695e265c9464d764a7f8 Mon Sep 17 00:00:00 2001 From: Dion Moult Date: Mon, 24 Jun 2024 23:37:52 +1000 Subject: [PATCH] Remove georeferencing orientation calculator UI because it's superseded by built-in angle calculators --- .../blenderbim/bim/module/georeference/ui.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/blenderbim/blenderbim/bim/module/georeference/ui.py b/src/blenderbim/blenderbim/bim/module/georeference/ui.py index 9e38f6298e..a45dc4e65c 100644 --- a/src/blenderbim/blenderbim/bim/module/georeference/ui.py +++ b/src/blenderbim/blenderbim/bim/module/georeference/ui.py @@ -270,21 +270,3 @@ class BIM_PT_gis_calculator(Panel): row = self.layout.row(align=True) row.operator("bim.convert_local_to_global", text="Local to Global") row.operator("bim.convert_global_to_local", text="Global to Local") - - row = self.layout.row(align=True) - row.label(text="Orientation Calculator", icon="TRACKING_REFINE_FORWARDS") - row = self.layout.row(align=True) - row.prop(props, "angle_degree_input_x", text="Angle (°) rel to Easting") - row.operator("bim.convert_angle_to_coord", text="", icon="FILE_REFRESH").type = "rel_x" - row = self.layout.row(align=True) - row.prop(props, "x_axis_abscissa_output", text="XAxis Abscissa") - row = self.layout.row(align=True) - row.prop(props, "x_axis_ordinate_output", text="XAxis Ordinate") - - row = self.layout.row(align=True) - row.prop(props, "angle_degree_input_y", text="Angle (°) rel to to +Y") - row.operator("bim.convert_angle_to_coord", text="", icon="FILE_REFRESH").type = "rel_y" - row = self.layout.row(align=True) - row.prop(props, "y_axis_abscissa_output", text="North Abscissa") - row = self.layout.row(align=True) - row.prop(props, "y_axis_ordinate_output", text="North Ordinate")