Source code for honeybee.radiance.pattern.colorfunc

"""Radiance Colorfunc Texture.

http://radsite.lbl.gov/radiance/refer/ray.html#Colorfunc
"""
from .patternbase import RadiancePattern


# TODO(): Implement the class. It's currently creates this material as generic Radiance
# material
[docs]class Colorfunc(RadiancePattern): """Radiance Colorfunc Material. A colorfunc is a procedurally defined color pattern. It is specified as follows: mod colorfunc id 4+ red green blue funcfile transform 0 n A1 A2 .. An """ pass