Source code for ladybug_rhino.color

"""Collection of methods for converting between Ladybug and .NET colors."""

try:
    from System.Drawing import Color
except ImportError as e:
    raise ImportError("Failed to import Windows/.NET libraries\n{}".format(e))


[docs]def color_to_color(color, alpha=255): """Convert a ladybug color into .NET color. Args: alpha: Optional integer between 1 and 255 for the alpha value of the color. """ try: return Color.FromArgb(alpha, color.r, color.g, color.b) except AttributeError as e: raise AttributeError('Input must be of type of Color:\n{}'.format(e))
[docs]def argb_color_to_color(color): """Convert a ladybug color into .NET color, including the alpha channel.""" try: return Color.FromArgb(color.a, color.r, color.g, color.b) except AttributeError as e: raise AttributeError('Input must be of type of Color:\n{}'.format(e))
[docs]def gray(): """Get a .NET gray color object. Useful when you need a placeholder color.""" return Color.Gray
[docs]def black(): """Get a .NET black color object. Useful for things like default text.""" return Color.Black