Difference between revisions of "BlenderBIM Add-on/IFC Patch Recipes"

From Wiki.OSArch
Line 1: Line 1:
 +
Code for IFC Patch Recipes in located [https://github.com/IfcOpenShell/IfcOpenShell/tree/v0.7.0/src/ifcpatch/ifcpatch/recipes here].
 +
 +
For Windows use <code>/</code>, for all other platforms use <code>\</code> in the path
 +
 
== MergeProject ==
 
== MergeProject ==
  
For Windows use <code>/</code>, for all other platforms use <code>\</code> in the path
+
[[File:MergeProject screenshot.png]]
[[File:MergeProject screenshot.png|left|Example input, specific to Windows]]
+
 
 +
== RecycleNonRootedElements ==
 +
 
 +
Consolidates redundant non-rooted entities, like the following example, down to one entity.
 +
 
 +
<code>#45=IFCOWNERHISTORY(#9,#8,.READWRITE.,.MODIFIED.,1629040293,#9,#8,1629040293);</code>
 +
<code>#52=IFCOWNERHISTORY(#9,#8,.READWRITE.,.MODIFIED.,1629040293,#9,#8,1629040293);</code>
 +
 
 +
[[File:RecycleNonRootedElements.png]]

Revision as of 13:18, 26 August 2022

Code for IFC Patch Recipes in located here.

For Windows use /, for all other platforms use \ in the path

MergeProject

MergeProject screenshot.png

RecycleNonRootedElements

Consolidates redundant non-rooted entities, like the following example, down to one entity.

#45=IFCOWNERHISTORY(#9,#8,.READWRITE.,.MODIFIED.,1629040293,#9,#8,1629040293); #52=IFCOWNERHISTORY(#9,#8,.READWRITE.,.MODIFIED.,1629040293,#9,#8,1629040293);

RecycleNonRootedElements.png