Skip to content

Commit

Permalink
Added docs for 3mf/stl mesher
Browse files Browse the repository at this point in the history
  • Loading branch information
gumyr committed Aug 9, 2023
1 parent dcf71b6 commit a058b45
Show file tree
Hide file tree
Showing 3 changed files with 174 additions and 95 deletions.
1 change: 1 addition & 0 deletions src/build123d/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@
"Keep",
"Kind",
"LengthMode",
"MeshType",
"Mode",
"PositionMode",
"Select",
Expand Down
12 changes: 12 additions & 0 deletions src/build123d/build_enums.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,6 +163,18 @@ def __repr__(self):
return f"<{self.__class__.__name__}.{self.name}>"


class MeshType(Enum):
"""3MF mesh types typically for 3D printing"""

OTHER = auto()
MODEL = auto()
SUPPORT = auto()
SOLIDSUPPORT = auto()

def __repr__(self):
return f"<{self.__class__.__name__}.{self.name}>"


class PositionMode(Enum):
"""Position along curve mode"""

Expand Down
Loading

0 comments on commit a058b45

Please sign in to comment.