You can now array IFC elements parametrically

This commit is contained in:
Dion Moult
2022-10-27 23:35:51 +11:00
parent f2c2fa8dce
commit 62229b032e
7 changed files with 337 additions and 4 deletions
@@ -245,3 +245,11 @@ class BIMModelProperties(PropertyGroup):
)
type_class: bpy.props.EnumProperty(items=get_type_class, name="IFC Class", update=update_type_class)
type_predefined_type: bpy.props.EnumProperty(items=get_type_predefined_type, name="Predefined Type", default=None)
class BIMArrayProperties(PropertyGroup):
is_editing: bpy.props.IntProperty(default=-1)
count: bpy.props.IntProperty(name="Count", default=0)
x: bpy.props.FloatProperty(name="X", default=0)
y: bpy.props.FloatProperty(name="Y", default=0)
z: bpy.props.FloatProperty(name="Z", default=0)