-
Notifications
You must be signed in to change notification settings - Fork 22
Expand file tree
/
Copy pathInit.py
More file actions
18 lines (15 loc) · 800 Bytes
/
Copy pathInit.py
File metadata and controls
18 lines (15 loc) · 800 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
# -*- coding: utf-8 -*-
'''
Init.py
FreeCAD init script of the InventorLoader module
'''
__author__ = 'Jens M. Plonka'
__copyright__ = 'Copyright 2018, Germany'
__url__ = "https://www.github.com/jmplonka/InventorLoader"
FreeCAD.addImportType("Autodesk INVENTOR part file (*.ipt)", "importerIL")
#FreeCAD.addImportType("Autodesk INVENTOR assembly file (*.iam)", "importerIL")
#FreeCAD.addImportType("Autodesk INVENTOR presentation file (*.ipn)", "importerIL")
#FreeCAD.addImportType("Autodesk INVENTOR drawing file (*.idw)", "importerIL")
FreeCAD.addImportType("3D ACIS Modeler file (*.sat *.sab *.smb *.smbh)", "importerIL")
FreeCAD.addImportType("AutoCAD 3D-Drawing file (*.dxf)", "importerIL")
FreeCAD.addImportType("Autodesk Fusion360 file (*.f3d)", "importerIL")