WIP copyright statements. See #1082. Also IFCP6 is now IFC4D as we will expand into more 4D apps and widen the scope.

This commit is contained in:
Dion Moult
2021-08-05 13:21:55 +10:00
parent b149f4f56d
commit 94f0612752
20 changed files with 241 additions and 5 deletions
+2 -2
View File
@@ -119,8 +119,8 @@ endif
cp -r dist/working/IfcOpenShell-0.6.0/src/ifccsv/* dist/blenderbim/libs/site/packages/
# Provides IFCPatch functionality
cp -r dist/working/IfcOpenShell-0.6.0/src/ifcpatch/ifcpatch dist/blenderbim/libs/site/packages/
# Provides IFCP6 functionality
cp -r dist/working/IfcOpenShell-0.6.0/src/ifcp6/ifcp6 dist/blenderbim/libs/site/packages/
# Provides IFC4D functionality
cp -r dist/working/IfcOpenShell-0.6.0/src/ifc4d/ifc4d dist/blenderbim/libs/site/packages/
rm -rf dist/working
# Provides Mustache templating in construction documentation
@@ -996,7 +996,7 @@ class ImportP6(bpy.types.Operator, ImportHelper):
filter_glob: bpy.props.StringProperty(default="*.xml", options={"HIDDEN"})
def execute(self, context):
from ifcp6.p62ifc import P62Ifc
from ifc4d.p62ifc import P62Ifc
self.file = IfcStore.get_file()
start = time.time()
@@ -1018,7 +1018,7 @@ class ImportMSP(bpy.types.Operator, ImportHelper):
filter_glob: bpy.props.StringProperty(default="*.xml", options={"HIDDEN"})
def execute(self, context):
from ifcp6.msp2ifc import MSP2Ifc
from ifc4d.msp2ifc import MSP2Ifc
self.file = IfcStore.get_file()
start = time.time()