Skip to content

Commit

Permalink
Vorbereitungen
Browse files Browse the repository at this point in the history
  • Loading branch information
hob committed Jan 15, 2025
1 parent 1d86b8b commit a74f6e7
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/femagtools/dxfsl/machine.py
Original file line number Diff line number Diff line change
Expand Up @@ -135,6 +135,16 @@ def set_outer(self):
self.geom.is_outer = True
self.geom.is_inner = False

def set_attributes(self,
kind="",
inner=False,
outer=False):
self.set_kind(kind)
if inner:
self.set_inner()
if outer:
self.set_outer()

def clear_cut_lines(self):
self.geom.clear_cut_lines()
if self.mirror_geom is not None:
Expand Down

0 comments on commit a74f6e7

Please sign in to comment.