package patterns import "image" import "image/color" import "git.tebibyte.media/sashakoshka/tomo/artist" import "git.tebibyte.media/sashakoshka/tomo/artist/shapes" import "git.tebibyte.media/sashakoshka/tomo/artist/artutil" // Uniform is a pattern that draws a solid color. type Uniform color.RGBA // Draw fills the bounding rectangle with the pattern's color. func (pattern Uniform) Draw (destination artist.Canvas, bounds image.Rectangle) { shapes.FillColorRectangle(destination, color.RGBA(pattern), bounds) } // Uhex creates a new Uniform pattern from an RGBA integer value. func Uhex (color uint32) (uniform Uniform) { return Uniform(artutil.Hex(color)) }