from enum import Enum class FileExportFormat(str, Enum): """The valid types of output file formats.""" # noqa: E501 """# The COLLADA/DAE file format. """ # noqa: E501 DAE = "dae" """# The DXF file format. """ # noqa: E501 DXF = "dxf" """# The FBX file format. """ # noqa: E501 FBX = "fbx" """# The FBX file format (in binary). """ # noqa: E501 FBXB = "fbxb" """# The OBJ file format. A zip file containing both the obj file itself and its associated mtl file for full processing. > The OBJ file format. It may or may not have an an attached material (mtl // mtllib) within the file, but we interact with it as if it does not. """ # noqa: E501 OBJ = "obj" """# The PLY file format. """ # noqa: E501 PLY = "ply" """# The STEP file format. """ # noqa: E501 STEP = "step" """# The STL file format. """ # noqa: E501 STL = "stl" def __str__(self) -> str: return str(self.value)