Minor fixes to docs

This commit is contained in:
Jesusbill
2023-01-10 01:06:49 +01:00
parent da84cc5925
commit 4845d191f4
3 changed files with 4 additions and 4 deletions
@@ -38,10 +38,10 @@ class Patcher:
.. code:: python
# Convert to millimeters
ifcpatch.execute({"input": model, "recipe": "ExtractElements", "arguments": ["MILLIMETERS"]})
ifcpatch.execute({"input": model, "recipe": "ConvertLengthUnit", "arguments": ["MILLIMETERS"]})
# Convert to feet
ifcpatch.execute({"input": model, "recipe": "ExtractElements", "arguments": ["FEET"]})
ifcpatch.execute({"input": model, "recipe": "ConvertLengthUnit", "arguments": ["FEET"]})
"""
self.src = src
self.file = file
@@ -55,7 +55,7 @@ class Patcher:
# Any property named "Area" is converted to a quantity named
# "NetSideArea", if that standardised quantity exists.
ifcpatch.execute({"input": model, "recipe": "ExtractElements", "arguments": ["Area", "NetSideArea"]})
ifcpatch.execute({"input": model, "recipe": "ConvertPropertiesToQuantities", "arguments": ["Area", "NetSideArea"]})
"""
self.src = src
self.file = file