mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-19 22:50:21 +00:00
Window Modifier - added 2d representation
+ fixed lining offset for door 2d representation
This commit is contained in:
@@ -185,7 +185,7 @@ def create_bm_extruded_profile(
|
|||||||
return new_verts + extruded_verts
|
return new_verts + extruded_verts
|
||||||
|
|
||||||
|
|
||||||
def create_bm_door_lining(bm, size: Vector, thickness: Vector, position: Vector = V(0, 0, 0).freeze()):
|
def create_bm_door_lining(bm, size: Vector, thickness: list, position: Vector = V(0, 0, 0).freeze()):
|
||||||
"""`thickness` of the profile is defined as list in the following order: `(SIDE, TOP)`
|
"""`thickness` of the profile is defined as list in the following order: `(SIDE, TOP)`
|
||||||
|
|
||||||
`thickness` can be also defined just as 1 float value.
|
`thickness` can be also defined just as 1 float value.
|
||||||
|
|||||||
@@ -141,6 +141,7 @@ def update_window_modifier_representation(context):
|
|||||||
}
|
}
|
||||||
representation_data["panel_properties"].append(panel_data)
|
representation_data["panel_properties"].append(panel_data)
|
||||||
|
|
||||||
|
# ELEVATION_VIEW representation
|
||||||
profile = ifcopenshell.util.representation.get_context(ifc_file, "Model", "Profile", "ELEVATION_VIEW")
|
profile = ifcopenshell.util.representation.get_context(ifc_file, "Model", "Profile", "ELEVATION_VIEW")
|
||||||
if profile:
|
if profile:
|
||||||
representation_data["context"] = profile
|
representation_data["context"] = profile
|
||||||
@@ -149,16 +150,39 @@ def update_window_modifier_representation(context):
|
|||||||
)
|
)
|
||||||
replace_ifc_representation_for_object(ifc_file, profile, obj, elevation_representation)
|
replace_ifc_representation_for_object(ifc_file, profile, obj, elevation_representation)
|
||||||
|
|
||||||
|
# MODEL_VIEW representation
|
||||||
body = ifcopenshell.util.representation.get_context(ifc_file, "Model", "Body", "MODEL_VIEW")
|
body = ifcopenshell.util.representation.get_context(ifc_file, "Model", "Body", "MODEL_VIEW")
|
||||||
representation_data["context"] = body
|
representation_data["context"] = body
|
||||||
model_representation = ifcopenshell.api.run("geometry.add_window_representation", ifc_file, **representation_data)
|
model_representation = ifcopenshell.api.run("geometry.add_window_representation", ifc_file, **representation_data)
|
||||||
replace_ifc_representation_for_object(ifc_file, body, obj, model_representation)
|
replace_ifc_representation_for_object(ifc_file, body, obj, model_representation)
|
||||||
|
|
||||||
|
# PLAN_VIEW representation
|
||||||
|
plan = ifcopenshell.util.representation.get_context(ifc_file, "Plan", "Body", "PLAN_VIEW")
|
||||||
|
if plan:
|
||||||
|
representation_data["context"] = plan
|
||||||
|
plan_representation = ifcopenshell.api.run(
|
||||||
|
"geometry.add_window_representation", ifc_file, **representation_data
|
||||||
|
)
|
||||||
|
replace_ifc_representation_for_object(ifc_file, plan, obj, plan_representation)
|
||||||
|
|
||||||
|
# adding switch representation at the end instead of changing order of representations
|
||||||
|
# to prevent #2744
|
||||||
|
blenderbim.core.geometry.switch_representation(
|
||||||
|
tool.Ifc,
|
||||||
|
tool.Geometry,
|
||||||
|
obj=obj,
|
||||||
|
representation=model_representation,
|
||||||
|
should_reload=True,
|
||||||
|
is_global=True,
|
||||||
|
should_sync_changes_first=True,
|
||||||
|
)
|
||||||
|
|
||||||
element.PartitioningType = props.window_type
|
element.PartitioningType = props.window_type
|
||||||
|
|
||||||
update_simple_openings(element, props.overall_width, props.overall_height)
|
update_simple_openings(element, props.overall_width, props.overall_height)
|
||||||
|
|
||||||
|
|
||||||
def create_bm_window_frame(bm, size: Vector, thickness: Vector, position: Vector = V(0, 0, 0).freeze()):
|
def create_bm_window_frame(bm, size: Vector, thickness: list, position: Vector = V(0, 0, 0).freeze()):
|
||||||
"""`thickness` of the profile is defined as list in the following order:
|
"""`thickness` of the profile is defined as list in the following order:
|
||||||
`(LEFT, TOP, RIGHT, BOTTOM)`
|
`(LEFT, TOP, RIGHT, BOTTOM)`
|
||||||
|
|
||||||
@@ -235,14 +259,16 @@ def create_bm_box(bm, size: Vector = V(1, 1, 1).freeze(), position: Vector = V(0
|
|||||||
def create_bm_window(
|
def create_bm_window(
|
||||||
bm,
|
bm,
|
||||||
lining_size: Vector,
|
lining_size: Vector,
|
||||||
lining_thickness,
|
lining_thickness: list,
|
||||||
lining_to_panel_offset_x,
|
lining_to_panel_offset_x,
|
||||||
lining_to_panel_offset_y_full,
|
lining_to_panel_offset_y_full,
|
||||||
frame_size,
|
frame_size: Vector,
|
||||||
frame_thickness,
|
frame_thickness,
|
||||||
glass_thickness,
|
glass_thickness,
|
||||||
position: Vector,
|
position: Vector,
|
||||||
):
|
):
|
||||||
|
"""`lining_thickness` expected to be defined as a list,
|
||||||
|
similarly to `create_bm_window_frame` `thickness` argument"""
|
||||||
# window lining
|
# window lining
|
||||||
window_lining_verts = create_bm_window_frame(bm, lining_size, lining_thickness)
|
window_lining_verts = create_bm_window_frame(bm, lining_size, lining_thickness)
|
||||||
|
|
||||||
|
|||||||
@@ -35,7 +35,7 @@ SUPPORTED_DOOR_TYPES = (
|
|||||||
|
|
||||||
|
|
||||||
def create_ifc_door_lining(
|
def create_ifc_door_lining(
|
||||||
builder: ShapeBuilder, size: Vector, thickness: Vector, position: Vector = V(0, 0, 0).freeze()
|
builder: ShapeBuilder, size: Vector, thickness: list, position: Vector = V(0, 0, 0).freeze()
|
||||||
):
|
):
|
||||||
"""`thickness` of the profile is defined as list in the following order: `(SIDE, TOP)`
|
"""`thickness` of the profile is defined as list in the following order: `(SIDE, TOP)`
|
||||||
|
|
||||||
@@ -100,7 +100,7 @@ class Usecase:
|
|||||||
"LiningOffset": self.convert_si_to_unit(0.0),
|
"LiningOffset": self.convert_si_to_unit(0.0),
|
||||||
# offset from the wall
|
# offset from the wall
|
||||||
"LiningToPanelOffsetX": self.convert_si_to_unit(0.025),
|
"LiningToPanelOffsetX": self.convert_si_to_unit(0.025),
|
||||||
# offset from the elevation view rectangle (unlike windows)
|
# offset from the X-axis (unlike windows)
|
||||||
"LiningToPanelOffsetY": self.convert_si_to_unit(0.025),
|
"LiningToPanelOffsetY": self.convert_si_to_unit(0.025),
|
||||||
# transom - vertical distance between door and window panels
|
# transom - vertical distance between door and window panels
|
||||||
"TransomThickness": self.convert_si_to_unit(0.000),
|
"TransomThickness": self.convert_si_to_unit(0.000),
|
||||||
@@ -291,6 +291,7 @@ class Usecase:
|
|||||||
door_items.extend(create_ifc_door_panel_2d(panel_size, panel_position, door_swing_type))
|
door_items.extend(create_ifc_door_panel_2d(panel_size, panel_position, door_swing_type))
|
||||||
items_2d.extend(door_items)
|
items_2d.extend(door_items)
|
||||||
|
|
||||||
|
builder.translate(items_2d, V(0, lining_offset))
|
||||||
representation_2d = builder.get_representation(self.settings["context"], items_2d)
|
representation_2d = builder.get_representation(self.settings["context"], items_2d)
|
||||||
return representation_2d
|
return representation_2d
|
||||||
|
|
||||||
|
|||||||
@@ -42,7 +42,7 @@ DEFAULT_PANEL_SCHEMAS = {
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
def create_ifc_window_frame_simple(builder, size: Vector, thickness: Vector, position: Vector = V(0,0,0).freeze()):
|
def create_ifc_window_frame_simple(builder, size: Vector, thickness: list, position: Vector = V(0, 0, 0).freeze()):
|
||||||
"""`thickness` of the profile is defined as list in the following order:
|
"""`thickness` of the profile is defined as list in the following order:
|
||||||
`(LEFT, TOP, RIGHT, BOTTOM)`
|
`(LEFT, TOP, RIGHT, BOTTOM)`
|
||||||
|
|
||||||
@@ -54,7 +54,7 @@ def create_ifc_window_frame_simple(builder, size: Vector, thickness: Vector, pos
|
|||||||
|
|
||||||
th_left, th_up, th_right, th_bottom = thickness
|
th_left, th_up, th_right, th_bottom = thickness
|
||||||
|
|
||||||
panel_rect = builder.rectangle(size=size*V(1,0,1))
|
panel_rect = builder.rectangle(size=size * V(1, 0, 1))
|
||||||
|
|
||||||
inner_rect_size = size - V(th_left + th_right, 0, th_bottom + th_up)
|
inner_rect_size = size - V(th_left + th_right, 0, th_bottom + th_up)
|
||||||
inner_rect = builder.rectangle(size=inner_rect_size * V(1, 0, 1), position=V(th_left, 0, th_bottom))
|
inner_rect = builder.rectangle(size=inner_rect_size * V(1, 0, 1), position=V(th_left, 0, th_bottom))
|
||||||
@@ -64,24 +64,44 @@ def create_ifc_window_frame_simple(builder, size: Vector, thickness: Vector, pos
|
|||||||
return panel_extruded
|
return panel_extruded
|
||||||
|
|
||||||
|
|
||||||
|
def window_l_shape_check(
|
||||||
|
lining_to_panel_offset_y_full,
|
||||||
|
lining_depth,
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
lining_thickness: list,
|
||||||
|
):
|
||||||
|
"""`lining_thickness` expected to be defined as a list,
|
||||||
|
similarly to `create_ifc_window_frame_simple` `thickness` argument"""
|
||||||
|
l_shape_check = lining_to_panel_offset_y_full < lining_depth and any(
|
||||||
|
lining_to_panel_offset_x < th for th in lining_thickness
|
||||||
|
)
|
||||||
|
return l_shape_check
|
||||||
|
|
||||||
|
|
||||||
def create_ifc_window(
|
def create_ifc_window(
|
||||||
builder,
|
builder,
|
||||||
lining_size: Vector,
|
lining_size: Vector,
|
||||||
lining_thickness,
|
lining_thickness: list,
|
||||||
lining_to_panel_offset_x,
|
lining_to_panel_offset_x,
|
||||||
lining_to_panel_offset_y_full,
|
lining_to_panel_offset_y_full,
|
||||||
frame_size,
|
frame_size: Vector,
|
||||||
frame_thickness,
|
frame_thickness,
|
||||||
glass_thickness,
|
glass_thickness,
|
||||||
position: Vector,
|
position: Vector,
|
||||||
):
|
):
|
||||||
|
"""`lining_thickness` expected to be defined as a list,
|
||||||
|
similarly to `create_ifc_window_frame_simple` `thickness` argument"""
|
||||||
lining_items = []
|
lining_items = []
|
||||||
main_lining_size = lining_size
|
main_lining_size = lining_size
|
||||||
|
|
||||||
# need to check offsets to decide whether lining should be rectangle
|
# need to check offsets to decide whether lining should be rectangle
|
||||||
# or L shaped
|
# or L shaped
|
||||||
l_shape_check = lining_to_panel_offset_y_full < lining_size.y \
|
l_shape_check = window_l_shape_check(
|
||||||
and any(lining_to_panel_offset_x < th for th in lining_thickness)
|
lining_to_panel_offset_y_full,
|
||||||
|
lining_size.y,
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
lining_thickness,
|
||||||
|
)
|
||||||
|
|
||||||
if l_shape_check:
|
if l_shape_check:
|
||||||
main_lining_size = lining_size.copy()
|
main_lining_size = lining_size.copy()
|
||||||
@@ -100,13 +120,22 @@ def create_ifc_window(
|
|||||||
main_lining = create_ifc_window_frame_simple(builder, main_lining_size, lining_thickness)
|
main_lining = create_ifc_window_frame_simple(builder, main_lining_size, lining_thickness)
|
||||||
lining_items.append(main_lining)
|
lining_items.append(main_lining)
|
||||||
|
|
||||||
frame_position = V(lining_to_panel_offset_x, lining_to_panel_offset_y_full, lining_to_panel_offset_x)
|
frame_position = V(
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
lining_to_panel_offset_y_full,
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
)
|
||||||
|
|
||||||
frame_extruded = create_ifc_window_frame_simple(builder, frame_size, frame_thickness, frame_position)
|
frame_extruded = create_ifc_window_frame_simple(builder, frame_size, frame_thickness, frame_position)
|
||||||
|
|
||||||
glass_position = frame_position + V(0, frame_size.y / 2 - glass_thickness / 2, 0)
|
glass_position = frame_position + V(0, frame_size.y / 2 - glass_thickness / 2, 0)
|
||||||
glass_rect = builder.deep_copy(frame_extruded.SweptArea.InnerCurves[0])
|
glass_rect = builder.deep_copy(frame_extruded.SweptArea.InnerCurves[0])
|
||||||
glass = builder.extrude(glass_rect, glass_thickness, extrusion_vector=V(0, 1, 0), position=glass_position)
|
glass = builder.extrude(
|
||||||
|
glass_rect,
|
||||||
|
glass_thickness,
|
||||||
|
extrusion_vector=V(0, 1, 0),
|
||||||
|
position=glass_position,
|
||||||
|
)
|
||||||
|
|
||||||
output_items = [lining_items, [frame_extruded], [glass]]
|
output_items = [lining_items, [frame_extruded], [glass]]
|
||||||
builder.translate(chain(*output_items), position)
|
builder.translate(chain(*output_items), position)
|
||||||
@@ -139,7 +168,10 @@ class Usecase:
|
|||||||
# offset from the wall
|
# offset from the wall
|
||||||
"LiningToPanelOffsetX": self.convert_si_to_unit(0.025),
|
"LiningToPanelOffsetX": self.convert_si_to_unit(0.025),
|
||||||
# offset from the lining
|
# offset from the lining
|
||||||
# full offset from Y axis = (lining_depth - frame_depth) + lining_to_panel_offset_y
|
# that way it allows you to define overall_depth constant between all panels
|
||||||
|
# and still have panels with different size:
|
||||||
|
# overall_depth = lining_depth + offset_y
|
||||||
|
# full offset from X axis = overall_depth - frame_depth
|
||||||
"LiningToPanelOffsetY": self.convert_si_to_unit(0.025),
|
"LiningToPanelOffsetY": self.convert_si_to_unit(0.025),
|
||||||
# applies to DoublePanelVertical, TriplePanelBottom, TriplePanelTop,
|
# applies to DoublePanelVertical, TriplePanelBottom, TriplePanelTop,
|
||||||
# TriplePanelLeft, TriplePanelRight
|
# TriplePanelLeft, TriplePanelRight
|
||||||
@@ -200,6 +232,7 @@ class Usecase:
|
|||||||
lining_offset = lining_props["LiningOffset"]
|
lining_offset = lining_props["LiningOffset"]
|
||||||
lining_to_panel_offset_x = lining_props["LiningToPanelOffsetX"]
|
lining_to_panel_offset_x = lining_props["LiningToPanelOffsetX"]
|
||||||
lining_to_panel_offset_y = lining_props["LiningToPanelOffsetY"]
|
lining_to_panel_offset_y = lining_props["LiningToPanelOffsetY"]
|
||||||
|
overall_depth = lining_depth + lining_to_panel_offset_y
|
||||||
|
|
||||||
mullion_thickness = lining_props["MullionThickness"] / 2
|
mullion_thickness = lining_props["MullionThickness"] / 2
|
||||||
first_mullion_offset = lining_props["FirstMullionOffset"]
|
first_mullion_offset = lining_props["FirstMullionOffset"]
|
||||||
@@ -211,67 +244,215 @@ class Usecase:
|
|||||||
|
|
||||||
panel_schema = list(reversed(panel_schema))
|
panel_schema = list(reversed(panel_schema))
|
||||||
|
|
||||||
|
# create 2d representation
|
||||||
|
def create_ifc_window_2d_representation():
|
||||||
|
items_2d = []
|
||||||
|
|
||||||
|
top_row = panel_schema[-1]
|
||||||
|
unique_cols = len(set(top_row))
|
||||||
|
built_panels = []
|
||||||
|
accumulated_width = 0
|
||||||
|
|
||||||
|
for column_i, panel_i in enumerate(top_row):
|
||||||
|
cur_panel_items = []
|
||||||
|
|
||||||
|
# lists represent left and right linings
|
||||||
|
window_lining_thickness = [lining_thickness] * 2
|
||||||
|
closed_lining = [True] * 2
|
||||||
|
|
||||||
|
if panel_i in built_panels:
|
||||||
|
continue
|
||||||
|
|
||||||
|
if unique_cols > 1:
|
||||||
|
if column_i == 0:
|
||||||
|
panel_width = first_mullion_offset
|
||||||
|
elif column_i == unique_cols - 1:
|
||||||
|
panel_width = overall_width - accumulated_width
|
||||||
|
else:
|
||||||
|
panel_width = second_mullion_offset - accumulated_width
|
||||||
|
|
||||||
|
# mullion thickness
|
||||||
|
if column_i != 0:
|
||||||
|
window_lining_thickness[0] = mullion_thickness # left column
|
||||||
|
closed_lining[0] = False
|
||||||
|
if column_i != unique_cols - 1:
|
||||||
|
window_lining_thickness[1] = mullion_thickness # right column
|
||||||
|
closed_lining[1] = False
|
||||||
|
else:
|
||||||
|
panel_width = overall_width
|
||||||
|
|
||||||
|
frame_depth = panels[panel_i]["FrameDepth"]
|
||||||
|
frame_thickness = panels[panel_i]["FrameThickness"]
|
||||||
|
lining_to_panel_offset_y_full = overall_depth - frame_depth
|
||||||
|
|
||||||
|
# add lining
|
||||||
|
cur_panel_items.append(
|
||||||
|
builder.polyline(
|
||||||
|
[
|
||||||
|
V(window_lining_thickness[0], 0),
|
||||||
|
V(panel_width - window_lining_thickness[1], 0),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
|
def get_lining_shape(lining_thickness, closed=True, mirror=False):
|
||||||
|
l_shape_check = window_l_shape_check(
|
||||||
|
lining_to_panel_offset_y_full,
|
||||||
|
lining_depth,
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
[lining_thickness],
|
||||||
|
)
|
||||||
|
if l_shape_check:
|
||||||
|
lining_shape = builder.polyline(
|
||||||
|
[
|
||||||
|
V(0, lining_depth),
|
||||||
|
V(lining_to_panel_offset_x, lining_depth),
|
||||||
|
V(
|
||||||
|
lining_to_panel_offset_x,
|
||||||
|
lining_to_panel_offset_y_full,
|
||||||
|
),
|
||||||
|
V(lining_thickness, lining_to_panel_offset_y_full),
|
||||||
|
V(lining_thickness, 0),
|
||||||
|
V(0, 0),
|
||||||
|
],
|
||||||
|
closed=closed,
|
||||||
|
)
|
||||||
|
else:
|
||||||
|
lining_shape = builder.polyline(
|
||||||
|
[
|
||||||
|
V(0, lining_depth),
|
||||||
|
V(lining_thickness, lining_depth),
|
||||||
|
V(lining_thickness, 0),
|
||||||
|
V(0, 0),
|
||||||
|
],
|
||||||
|
closed=closed,
|
||||||
|
)
|
||||||
|
|
||||||
|
if mirror:
|
||||||
|
builder.mirror(
|
||||||
|
lining_shape,
|
||||||
|
mirror_axes=V(1, 0),
|
||||||
|
mirror_point=V(panel_width / 2, 0),
|
||||||
|
)
|
||||||
|
|
||||||
|
return lining_shape
|
||||||
|
|
||||||
|
cur_panel_items.extend(
|
||||||
|
[
|
||||||
|
get_lining_shape(window_lining_thickness[0], closed=closed_lining[0]),
|
||||||
|
get_lining_shape(
|
||||||
|
window_lining_thickness[1],
|
||||||
|
closed=closed_lining[1],
|
||||||
|
mirror=True,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
# add frame
|
||||||
|
frame_items = []
|
||||||
|
frame_position = V(lining_to_panel_offset_x, lining_to_panel_offset_y_full)
|
||||||
|
frame_width = panel_width - lining_to_panel_offset_x * 2
|
||||||
|
|
||||||
|
frame_vertical = builder.rectangle(size=V(frame_thickness, frame_depth))
|
||||||
|
frame_items.extend(
|
||||||
|
[
|
||||||
|
frame_vertical,
|
||||||
|
builder.mirror(
|
||||||
|
frame_vertical,
|
||||||
|
mirror_axes=V(1, 0),
|
||||||
|
mirror_point=V(frame_width / 2, 0),
|
||||||
|
create_copy=True,
|
||||||
|
),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
|
||||||
|
frame_horizontal = builder.polyline([V(frame_thickness, 0), V(frame_width - frame_thickness, 0)])
|
||||||
|
frame_items.extend(
|
||||||
|
[
|
||||||
|
frame_horizontal,
|
||||||
|
builder.translate(frame_horizontal, V(0, frame_depth), create_copy=True),
|
||||||
|
]
|
||||||
|
)
|
||||||
|
# glass
|
||||||
|
frame_items.append(builder.translate(frame_horizontal, V(0, frame_depth / 2), create_copy=True))
|
||||||
|
|
||||||
|
builder.translate(frame_items, frame_position)
|
||||||
|
cur_panel_items.extend(frame_items)
|
||||||
|
|
||||||
|
builder.translate(cur_panel_items, V(accumulated_width, 0))
|
||||||
|
|
||||||
|
accumulated_width += panel_width
|
||||||
|
built_panels.append(panel_i)
|
||||||
|
items_2d.extend(cur_panel_items)
|
||||||
|
|
||||||
|
builder.translate(items_2d, V(0, lining_offset))
|
||||||
|
representation_2d = builder.get_representation(self.settings["context"], items_2d)
|
||||||
|
return representation_2d
|
||||||
|
|
||||||
|
if self.settings["context"].TargetView == "PLAN_VIEW":
|
||||||
|
return create_ifc_window_2d_representation()
|
||||||
|
|
||||||
# TODO: need more readable way to define panel width and height
|
# TODO: need more readable way to define panel width and height
|
||||||
unique_rows_in_col = [
|
unique_rows_in_col = [
|
||||||
len(set(row[column_i] for row in panel_schema)) for column_i in range(len(panel_schema[0]))
|
len(set(row[column_i] for row in panel_schema)) for column_i in range(len(panel_schema[0]))
|
||||||
]
|
]
|
||||||
|
|
||||||
for row_i, panel_row in enumerate(panel_schema):
|
for row_i, panel_row in enumerate(panel_schema):
|
||||||
accumulated_width = 0
|
accumulated_width = 0
|
||||||
unique_cols = len(set(panel_row))
|
unique_cols = len(set(panel_row))
|
||||||
|
|
||||||
for column_i, panel_i in enumerate(panel_row):
|
for column_i, panel_i in enumerate(panel_row):
|
||||||
# calculate current panel dimensions
|
# calculate current panel dimensions
|
||||||
|
window_lining_thickness = [lining_thickness] * 4
|
||||||
|
|
||||||
if unique_cols > 1:
|
if unique_cols > 1:
|
||||||
|
# panel_width
|
||||||
if column_i == 0:
|
if column_i == 0:
|
||||||
lining_width = first_mullion_offset
|
panel_width = first_mullion_offset
|
||||||
elif column_i == unique_cols - 1:
|
elif column_i == unique_cols - 1:
|
||||||
lining_width = overall_width - accumulated_width
|
panel_width = overall_width - accumulated_width
|
||||||
else:
|
else:
|
||||||
lining_width = second_mullion_offset - accumulated_width
|
panel_width = second_mullion_offset - accumulated_width
|
||||||
|
|
||||||
|
# mullion thickness
|
||||||
|
if column_i != 0:
|
||||||
|
window_lining_thickness[0] = mullion_thickness # left column
|
||||||
|
if column_i != unique_cols - 1:
|
||||||
|
window_lining_thickness[2] = mullion_thickness # right column
|
||||||
else:
|
else:
|
||||||
lining_width = overall_width
|
panel_width = overall_width
|
||||||
|
|
||||||
if unique_rows_in_col[column_i] > 1:
|
if unique_rows_in_col[column_i] > 1:
|
||||||
if row_i == 0:
|
if row_i == 0:
|
||||||
lining_height = first_transom_offset
|
panel_height = first_transom_offset
|
||||||
elif row_i == unique_rows_in_col[column_i] - 1:
|
elif row_i == unique_rows_in_col[column_i] - 1:
|
||||||
lining_height = overall_height - accumulated_height[column_i]
|
panel_height = overall_height - accumulated_height[column_i]
|
||||||
else:
|
else:
|
||||||
lining_height = second_transom_offset - accumulated_height[column_i]
|
panel_height = second_transom_offset - accumulated_height[column_i]
|
||||||
|
|
||||||
|
# transom thickness
|
||||||
|
if row_i != 0:
|
||||||
|
window_lining_thickness[3] = transom_thickness # bottom row
|
||||||
|
if row_i != unique_rows_in_col[column_i] - 1:
|
||||||
|
window_lining_thickness[1] = transom_thickness # top row
|
||||||
else:
|
else:
|
||||||
lining_height = overall_height
|
panel_height = overall_height
|
||||||
|
|
||||||
if panel_i in built_panels:
|
if panel_i in built_panels:
|
||||||
accumulated_height[column_i] += lining_height
|
accumulated_height[column_i] += panel_height
|
||||||
accumulated_width += lining_width
|
accumulated_width += panel_width
|
||||||
continue
|
continue
|
||||||
|
|
||||||
cur_panel = panels[panel_i]
|
cur_panel = panels[panel_i]
|
||||||
frame_depth = cur_panel["FrameDepth"]
|
frame_depth = cur_panel["FrameDepth"]
|
||||||
frame_thickness = cur_panel["FrameThickness"]
|
frame_thickness = cur_panel["FrameThickness"]
|
||||||
|
lining_to_panel_offset_y_full = overall_depth - frame_depth
|
||||||
current_items = []
|
current_items = []
|
||||||
|
|
||||||
frame_width = lining_width - lining_to_panel_offset_x * 2
|
frame_width = panel_width - lining_to_panel_offset_x * 2
|
||||||
frame_height = lining_height - lining_to_panel_offset_x * 2
|
frame_height = panel_height - lining_to_panel_offset_x * 2
|
||||||
|
|
||||||
# calculate lining thickness
|
window_lining_size = V(panel_width, lining_depth, panel_height)
|
||||||
# lining is calculated on panel level because
|
|
||||||
# panel depth is used
|
|
||||||
# also taking into account mullions and transoms
|
|
||||||
window_lining_thickness = [lining_thickness] * 4
|
|
||||||
# mullion thickness
|
|
||||||
if unique_cols > 1:
|
|
||||||
if column_i != 0:
|
|
||||||
window_lining_thickness[0] = mullion_thickness # left column
|
|
||||||
if column_i != unique_cols - 1:
|
|
||||||
window_lining_thickness[2] = mullion_thickness # right column
|
|
||||||
# transom thickness
|
|
||||||
if unique_rows_in_col[column_i] > 1:
|
|
||||||
if row_i != 0:
|
|
||||||
window_lining_thickness[3] = transom_thickness # bottom row
|
|
||||||
if row_i != unique_rows_in_col[column_i] - 1:
|
|
||||||
window_lining_thickness[1] = transom_thickness # top row
|
|
||||||
window_lining_size = V(lining_width, lining_depth, lining_height)
|
|
||||||
frame_size = V(frame_width, frame_depth, frame_height)
|
frame_size = V(frame_width, frame_depth, frame_height)
|
||||||
window_panel_position = V(accumulated_width, 0, accumulated_height[column_i])
|
window_panel_position = V(accumulated_width, 0, accumulated_height[column_i])
|
||||||
|
|
||||||
@@ -281,7 +462,7 @@ class Usecase:
|
|||||||
window_lining_size,
|
window_lining_size,
|
||||||
window_lining_thickness,
|
window_lining_thickness,
|
||||||
lining_to_panel_offset_x,
|
lining_to_panel_offset_x,
|
||||||
(lining_depth - frame_depth) + lining_to_panel_offset_y,
|
lining_to_panel_offset_y_full,
|
||||||
frame_size,
|
frame_size,
|
||||||
frame_thickness,
|
frame_thickness,
|
||||||
glass_thickness,
|
glass_thickness,
|
||||||
@@ -290,8 +471,8 @@ class Usecase:
|
|||||||
built_panels.append(panel_i)
|
built_panels.append(panel_i)
|
||||||
window_items.extend(chain(*current_window_items))
|
window_items.extend(chain(*current_window_items))
|
||||||
|
|
||||||
accumulated_height[column_i] += lining_height
|
accumulated_height[column_i] += panel_height
|
||||||
accumulated_width += lining_width
|
accumulated_width += panel_width
|
||||||
|
|
||||||
builder.translate(window_items, V(0, lining_offset, 0)) # wall offset
|
builder.translate(window_items, V(0, lining_offset, 0)) # wall offset
|
||||||
representation = builder.get_representation(self.settings["context"], window_items)
|
representation = builder.get_representation(self.settings["context"], window_items)
|
||||||
|
|||||||
Reference in New Issue
Block a user