IfcPatch now allows passing in IFC objects instead of filepath strings

This commit is contained in:
Dion Moult
2022-09-19 13:31:33 +10:00
parent ea1d797605
commit 5c5bb03652
21 changed files with 104 additions and 123 deletions
+1 -3
View File
@@ -57,10 +57,8 @@ Here is a minimal example of how to use IfcDiff as a library:
import ifcpatch
ifcpatch.execute({
"input": "input.ifc",
"output": "output.ifc",
"input": ifcopenshell.open("input.ifc"),
"recipe": "ExtractElements",
"log": "ifcpatch.log",
"arguments": [".IfcWall"],
})