From 6f18cb493e29c1c2493a99f7a6b498352a1ef48d Mon Sep 17 00:00:00 2001 From: asamaiya <157544179+asamaiya@users.noreply.github.com> Date: Thu, 1 Feb 2024 08:36:42 -0700 Subject: [PATCH] FEATURE: Removing depreciated ArcResolution setting from RaptorX solution setups (#367) --- .../raptor_x_simulation_settings.py | 18 ------------------ 1 file changed, 18 deletions(-) diff --git a/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py b/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py index 42a0a9a63d..0d1706abe1 100644 --- a/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py +++ b/src/ansys/edb/core/simulation_setup/raptor_x_simulation_settings.py @@ -228,24 +228,6 @@ def eliminate_slit_per_holes(self, eliminate_slit_per_holes): messages.double_property_message(self, eliminate_slit_per_holes) ) - @property - def use_arc_resolution(self): - """:obj:`bool`: Flag indicating if arcs with polygons are approximated.""" - return self.__stub.GetUseArcResolution(self.msg).value - - @use_arc_resolution.setter - def use_arc_resolution(self, use_arc_resolution): - self.__stub.SetUseArcResolution(messages.bool_property_message(self, use_arc_resolution)) - - @property - def arc_resolution(self): - """:obj:`str`: Number of vertices to approximate arcs with.""" - return self.__stub.GetArcResolution(self.msg).value - - @arc_resolution.setter - def arc_resolution(self, arc_resolution): - self.__stub.SetArcResolution(messages.string_property_message(self, arc_resolution)) - @property def use_auto_removal_sliver_poly(self): """:obj:`bool`: Flag indicating if slight misaligned overlapping polygons are to be automatically aligned."""