2023-01-14 10:41:51 -07:00
|
|
|
package artist
|
|
|
|
|
2023-02-23 12:44:54 -07:00
|
|
|
import "image"
|
|
|
|
import "git.tebibyte.media/sashakoshka/tomo/canvas"
|
2023-01-14 10:41:51 -07:00
|
|
|
|
2023-02-23 12:44:54 -07:00
|
|
|
// Pattern is capable of drawing to a canvas within the bounds of a given
|
|
|
|
// clipping rectangle.
|
2023-01-14 10:41:51 -07:00
|
|
|
type Pattern interface {
|
2023-02-23 12:44:54 -07:00
|
|
|
// Draw draws to destination, using the bounds of destination as a width
|
|
|
|
// and height for things like gradients, bevels, etc. The pattern may
|
|
|
|
// not draw outside the union of destination.Bounds() and clip. The
|
|
|
|
// clipping rectangle effectively takes a subset of the pattern. To
|
|
|
|
// change the bounds of the pattern itself, use canvas.Cut() on the
|
|
|
|
// destination before passing it to Draw().
|
|
|
|
Draw (destination canvas.Canvas, clip image.Rectangle)
|
2023-01-14 10:41:51 -07:00
|
|
|
}
|
2023-02-23 13:00:44 -07:00
|
|
|
|
|
|
|
// Draw lets you use several clipping rectangles to draw a pattern.
|
|
|
|
func Draw (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
source Pattern,
|
|
|
|
clips ...image.Rectangle,
|
|
|
|
) {
|
|
|
|
for _, clip := range clips {
|
|
|
|
source.Draw(destination, clip)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// DrawBounds is like Draw, but lets you specify an overall bounding rectangle
|
|
|
|
// for the pattern. The destination is cut to this rectangle.
|
|
|
|
func DrawBounds (
|
|
|
|
destination canvas.Canvas,
|
|
|
|
bounds image.Rectangle,
|
|
|
|
source Pattern,
|
|
|
|
clips ...image.Rectangle,
|
|
|
|
) {
|
|
|
|
cut := canvas.Cut(destination, bounds)
|
|
|
|
for _, clip := range clips {
|
|
|
|
source.Draw(cut, clip)
|
|
|
|
}
|
|
|
|
}
|
2023-02-23 15:44:53 -07:00
|
|
|
|
|
|
|
// AllocateSample returns a new canvas containing the result of a pattern. The
|
|
|
|
// resulting canvas can be sourced from shape drawing functions. I beg of you
|
|
|
|
// please do not call this every time you need to draw a shape with a pattern on
|
|
|
|
// it because that is horrible and cruel to the computer.
|
|
|
|
func AllocateSample (source Pattern, width, height int) (allocated canvas.Canvas) {
|
|
|
|
allocated = canvas.NewBasicCanvas(width, height)
|
|
|
|
source.Draw(allocated, allocated.Bounds())
|
|
|
|
return
|
|
|
|
}
|