Source code for honeybee_plus.radiance.material.metal2
"""Radiance Metal2 Material.
http://radsite.lbl.gov/radiance/refer/ray.html#Metal2
"""
from .materialbase import RadianceMaterial
# TODO(): Implement the class. It's currently creates this material as generic Radiance
# material
[docs]class Metal2(RadianceMaterial):
"""Radiance Metal2 Material.
Metal2 is the same as plastic2, except that the highlights are modified by the
material color.
"""
pass