mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-21 10:23:41 +00:00
Minor fix
This commit is contained in:
@@ -98,7 +98,7 @@ endif
|
|||||||
# Provides IFCCSV functionality
|
# Provides IFCCSV functionality
|
||||||
cp -r dist/working/IfcOpenShell-0.6.0/src/ifccsv/* dist/blenderbim/libs/site/packages/
|
cp -r dist/working/IfcOpenShell-0.6.0/src/ifccsv/* dist/blenderbim/libs/site/packages/
|
||||||
# Provides IFCPatch functionality
|
# Provides IFCPatch functionality
|
||||||
cp -r dist/working/IfcOpenShell-0.6.0/src/ifcpatch dist/blenderbim/libs/site/packages/
|
cp -r dist/working/IfcOpenShell-0.6.0/src/ifcpatch/ifcpatch dist/blenderbim/libs/site/packages/
|
||||||
rm -rf dist/working
|
rm -rf dist/working
|
||||||
|
|
||||||
# Provides Mustache templating in construction documentation
|
# Provides Mustache templating in construction documentation
|
||||||
|
|||||||
@@ -49,8 +49,8 @@ optional arguments:
|
|||||||
Exactly how it is run depends on the recipe. A recipe may require zero or more
|
Exactly how it is run depends on the recipe. A recipe may require zero or more
|
||||||
arguments which are specific to the recipe. Here's an example which runs the
|
arguments which are specific to the recipe. Here's an example which runs the
|
||||||
`ExtractElements` recipe, which, as the same suggests, extracts out elements.
|
`ExtractElements` recipe, which, as the same suggests, extracts out elements.
|
||||||
This recipe expects one argument, which is a [filtering
|
This recipe expects one argument, which uses the [IFC Query
|
||||||
query](https://wiki.osarch.org/index.php?title=IfcOpenShell_code_examples#IFC_Query_Syntax).
|
syntax](https://wiki.osarch.org/index.php?title=IfcOpenShell_code_examples#IFC_Query_Syntax).
|
||||||
In this example, we'll extract out all `IfcWall` elements.
|
In this example, we'll extract out all `IfcWall` elements.
|
||||||
|
|
||||||
```
|
```
|
||||||
@@ -65,6 +65,7 @@ ifcpatch.execute({
|
|||||||
"input": "input.ifc",
|
"input": "input.ifc",
|
||||||
"output": "output.ifc",
|
"output": "output.ifc",
|
||||||
"recipe": "ExtractElements",
|
"recipe": "ExtractElements",
|
||||||
|
"log": "ifcpatch.log",
|
||||||
"arguments": [".IfcWall"],
|
"arguments": [".IfcWall"],
|
||||||
})
|
})
|
||||||
```
|
```
|
||||||
|
|||||||
Reference in New Issue
Block a user