diff --git a/color.go b/color.go index 46e6c301ffc01a873ebfd7c74e0b1a5eab171942..94b2b65cbe7c9181fa14bf74981640d6275c3e57 100644 --- a/color.go +++ b/color.go @@ -9,6 +9,16 @@ type RGBA struct { R, G, B, A float64 } +// RGB returns a fully opaque RGBA color with the given RGB values. +func RGB(r, g, b float64) RGBA { + return RGBA{r, g, b, 1} +} + +// Alpha returns a while RGBA color with the given alpha component. +func Alpha(a float64) RGBA { + return RGBA{a, a, a, a} +} + // Add adds color d to color c component-wise and returns the result (the components are not // clamped). func (c RGBA) Add(d RGBA) RGBA {