You can now add plan views based on a building storey. See #890.

This commit is contained in:
Dion Moult
2022-02-03 17:28:09 +11:00
parent 098ab2c237
commit 3e99393895
6 changed files with 45 additions and 2 deletions
@@ -72,7 +72,13 @@ class AddDrawing(bpy.types.Operator, Operator):
def _execute(self, context):
self.props = context.scene.DocProperties
core.add_drawing(tool.Ifc, tool.Collector, tool.Drawing, target_view=self.props.target_view, location_hint=None)
core.add_drawing(
tool.Ifc,
tool.Collector,
tool.Drawing,
target_view=self.props.target_view,
location_hint=int(self.props.location_hint),
)
class CreateDrawing(bpy.types.Operator):