kittycad.models.file_export_format
Classes
|
The valid types of output file formats. |
- class kittycad.models.file_export_format.FileExportFormat(value)[source][source]
The valid types of output file formats.
- FBXB = 'fbxb'[source]
//en.wikipedia.org/wiki/Wavefront_.obj_file> 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.
- Type
# The OBJ file format. A zip file containing both the obj file itself and its associated mtl file for full processing. <https
- Type
//en.wikipedia.org/wiki/Wavefront_.obj_file>> The OBJ file format. <https
- STEP = 'step'[source]
//en.wikipedia.org/wiki/STL_(file_format)>
- Type
# The STL file format. <https
- __dict__ = mappingproxy({'_generate_next_value_': <function Enum._generate_next_value_>, '__module__': 'kittycad.models.file_export_format', '__doc__': 'The valid types of output file formats.', '__str__': <function FileExportFormat.__str__>, '__dict__': <attribute '__dict__' of 'FileExportFormat' objects>, '__weakref__': <attribute '__weakref__' of 'FileExportFormat' objects>, '_member_names_': ['DAE', 'DXF', 'FBX', 'FBXB', 'OBJ', 'PLY', 'STEP', 'STL'], '_member_map_': {'DAE': <FileExportFormat.DAE: 'dae'>, 'DXF': <FileExportFormat.DXF: 'dxf'>, 'FBX': <FileExportFormat.FBX: 'fbx'>, 'FBXB': <FileExportFormat.FBXB: 'fbxb'>, 'OBJ': <FileExportFormat.OBJ: 'obj'>, 'PLY': <FileExportFormat.PLY: 'ply'>, 'STEP': <FileExportFormat.STEP: 'step'>, 'STL': <FileExportFormat.STL: 'stl'>}, '_member_type_': <class 'str'>, '_value2member_map_': {'dae': <FileExportFormat.DAE: 'dae'>, 'dxf': <FileExportFormat.DXF: 'dxf'>, 'fbx': <FileExportFormat.FBX: 'fbx'>, 'fbxb': <FileExportFormat.FBXB: 'fbxb'>, 'obj': <FileExportFormat.OBJ: 'obj'>, 'ply': <FileExportFormat.PLY: 'ply'>, 'step': <FileExportFormat.STEP: 'step'>, 'stl': <FileExportFormat.STL: 'stl'>}, 'DAE': <FileExportFormat.DAE: 'dae'>, 'DXF': <FileExportFormat.DXF: 'dxf'>, 'FBX': <FileExportFormat.FBX: 'fbx'>, 'FBXB': <FileExportFormat.FBXB: 'fbxb'>, 'OBJ': <FileExportFormat.OBJ: 'obj'>, 'PLY': <FileExportFormat.PLY: 'ply'>, 'STEP': <FileExportFormat.STEP: 'step'>, 'STL': <FileExportFormat.STL: 'stl'>, '__repr__': <function Enum.__repr__>, '__format__': <function Enum.__format__>, '__new__': <function Enum.__new__>, '__annotations__': {}})[source]
- _generate_next_value_(start, count, last_values)[source]
Generate the next value when not given.
name: the name of the member start: the initial start value or None count: the number of existing members last_value: the last value assigned or None