Files
kittycad.py/kittycad/models/file_export_format.py

17 lines
269 B
Python
Raw Normal View History

from enum import Enum
2022-09-29 21:52:21 +00:00
class FileExportFormat(str, Enum):
DAE = 'dae'
2022-09-29 21:52:21 +00:00
DXF = 'dxf'
FBX = 'fbx'
FBXB = 'fbxb'
2022-09-29 21:52:21 +00:00
OBJ = 'obj'
PLY = 'ply'
2022-09-29 21:52:21 +00:00
STEP = 'step'
STL = 'stl'
SVG = 'svg'
def __str__(self) -> str:
return str(self.value)