Source code for honeybee_display.aperture
"""Method to translate a Aperture to a VisualizationSet."""
from ladybug_display.geometry3d import DisplayFace3D
from ladybug_display.visualization import VisualizationSet, ContextGeometry
from ._util import _process_wireframe
[docs]
def aperture_to_vis_set(aperture, color_by='type'):
"""Translate a Honeybee Aperture to a VisualizationSet.
Args:
aperture: A Honeybee Aperture object to be converted to a VisualizationSet.
color_by: Text for the property that dictates the colors of the Aperture
geometry. (Default: type). Choose from the following:
* type
* boundary_condition
Returns:
A VisualizationSet object that represents the Aperture with a
single ContextGeometry.
"""
# get the basic properties for geometry conversion
color_by_attr = 'type_color' if color_by.lower() == 'type' else 'bc_color'
d_mod = 'SurfaceWithEdges'
# convert all geometry into DisplayFace3D
dis_geos = []
a_col = getattr(aperture, color_by_attr)
dis_geos.append(DisplayFace3D(aperture.geometry, a_col, d_mod))
for shd in aperture.shades:
s_col = getattr(shd, color_by_attr)
dis_geos.append(DisplayFace3D(shd.geometry, s_col, d_mod))
# build the VisualizationSet and ContextGeometry
con_geo = ContextGeometry(aperture.identifier, dis_geos)
con_geo.display_name = aperture.display_name
vis_set = VisualizationSet(aperture.identifier, [con_geo])
vis_set.display_name = aperture.display_name
return vis_set
[docs]
def aperture_to_vis_set_wireframe(aperture, include_shades=True, color=None):
"""Get a VisualizationSet with a single ContextGeometry for the aperture wireframe.
Args:
aperture: A Honeybee Aperture object to be translated to a wireframe.
include_shades: Boolean for whether the wireframe should include shades
of the Aperture. (Default: True).
color: An optional Color object to set the color of the wireframe.
If None, the color will be black.
Returns:
A VisualizationSet with a single ContextGeometry and a list of
DisplayLineSegment3D for the wireframe of the Aperture.
"""
wireframe = []
_process_wireframe(aperture.geometry, wireframe, color)
if include_shades:
for shd in aperture.shades:
_process_wireframe(shd.geometry, wireframe, color)
vis_set = VisualizationSet(
aperture.identifier, [ContextGeometry('Wireframe', wireframe)])
vis_set.display_name = aperture.display_name
return vis_set