Skip to content

Commit

Permalink
FEATURE: Removing depreciated ArcResolution setting from RaptorX solu…
Browse files Browse the repository at this point in the history
…tion setups (#367)
  • Loading branch information
asamaiya committed Feb 1, 2024
1 parent a4ced1a commit 6f18cb4
Showing 1 changed file with 0 additions and 18 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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."""
Expand Down

0 comments on commit 6f18cb4

Please sign in to comment.