generativeart/squaregrid.go

55 lines
1.2 KiB
Go
Raw Normal View History

2021-03-02 03:23:29 +00:00
package generativeart
import (
"github.com/fogleman/gg"
"math/rand"
)
type girdSquares struct{}
// NewGirdSquares returns a grid squares generator.
func NewGirdSquares() *girdSquares {
return &girdSquares{}
}
// Generative draws a grid squares image.
func (g *girdSquares) Generative(c *canva) {
ctex := gg.NewContextForRGBA(c.img)
step := c.opts.step
rectSize := c.opts.rectLenSide
for x := 0; x < c.width; x += step {
for y := 0; y < c.height; y += step {
cl := c.opts.colorSchema[rand.Intn(255)]
x0 := float64(x)
y0 := float64(y)
s := float64(rectSize)
theta := rand.Intn(360) + 1
for i := 0; i < c.opts.nIters; i++ {
ctex.Push()
ctex.Translate(x0+float64(step/2), y0+float64(step/2))
ctex.Rotate(gg.Radians(float64(theta * i)))
ctex.Scale(s, s)
ctex.LineTo(-0.5, 0.5)
ctex.LineTo(0.5, 0.5)
ctex.LineTo(0.5, -0.5)
ctex.LineTo(-0.5, -0.5)
ctex.LineTo(-0.5, 0.5)
ctex.SetLineWidth(c.opts.lineWidth)
ctex.SetColor(c.opts.lineColor)
ctex.StrokePreserve()
ctex.SetRGBA255(int(cl.R), int(cl.G), int(cl.B), c.opts.alpha)
ctex.Fill()
ctex.Pop()
s = s - c.opts.decay*float64(rectSize)
}
}
}
}