2023-08-30 15:59:51 -07:00
|
|
|
from enum import Enum
|
|
|
|
|
|
|
|
|
|
|
|
class StlStorage(str, Enum):
|
2023-11-27 16:01:20 -08:00
|
|
|
"""Export storage.""" # noqa: E501
|
2023-08-30 15:59:51 -07:00
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
"""# Plaintext encoding. """ # noqa: E501
|
|
|
|
ASCII = "ascii"
|
|
|
|
"""# Binary STL encoding.
|
2023-08-30 15:59:51 -07:00
|
|
|
|
2023-11-27 16:01:20 -08:00
|
|
|
This is the default setting. """ # noqa: E501
|
|
|
|
BINARY = "binary"
|
|
|
|
|
|
|
|
def __str__(self) -> str:
|
|
|
|
return str(self.value)
|