add circle line
This commit is contained in:
parent
6a5ef90802
commit
a92fa10eb1
2 changed files with 70 additions and 0 deletions
52
circleline.go
Normal file
52
circleline.go
Normal file
|
@ -0,0 +1,52 @@
|
|||
package generativeart
|
||||
|
||||
import (
|
||||
"github.com/fogleman/gg"
|
||||
"math"
|
||||
"math/rand"
|
||||
)
|
||||
|
||||
type point struct {
|
||||
x, y float64
|
||||
}
|
||||
|
||||
type circleLine struct {
|
||||
step float64
|
||||
lineNum int
|
||||
radius float64
|
||||
}
|
||||
|
||||
// NewCircleLine returns a circleLine object.
|
||||
func NewCircleLine(step float64, lineNum int, radius float64) *circleLine {
|
||||
return &circleLine{
|
||||
step: step,
|
||||
lineNum: lineNum,
|
||||
radius: radius,
|
||||
}
|
||||
}
|
||||
|
||||
// Generative draws a cirle line image.
|
||||
func (cl *circleLine) Generative(c *canva) {
|
||||
ctex := gg.NewContextForRGBA(c.img)
|
||||
ctex.SetLineWidth(c.opts.lineWidth)
|
||||
ctex.SetColor(c.opts.lineColor)
|
||||
var points []point
|
||||
for theta := -math.Pi; theta <= math.Pi; theta += cl.step {
|
||||
x := cl.radius * math.Cos(theta)
|
||||
y := cl.radius * math.Sin(theta)
|
||||
xi, yi := ConvertCartesianToPixel(x, y, c.xaixs, c.yaixs, c.width, c.height)
|
||||
points = append(points, point{
|
||||
x: float64(xi),
|
||||
y: float64(yi),
|
||||
})
|
||||
}
|
||||
|
||||
for i := 0; i < cl.lineNum; i++ {
|
||||
p1 := points[rand.Intn(len(points))]
|
||||
p2 := points[rand.Intn(len(points))]
|
||||
|
||||
ctex.MoveTo(p1.x, p1.y)
|
||||
ctex.LineTo(p2.x, p2.y)
|
||||
ctex.Stroke()
|
||||
}
|
||||
}
|
18
example/example_circleline.go
Normal file
18
example/example_circleline.go
Normal file
|
@ -0,0 +1,18 @@
|
|||
package main
|
||||
|
||||
import (
|
||||
"generativeart"
|
||||
"math/rand"
|
||||
"time"
|
||||
)
|
||||
|
||||
func main() {
|
||||
rand.Seed(time.Now().Unix())
|
||||
c := generativeart.NewCanva(800, 800, 2, 2)
|
||||
c.SetBackground(generativeart.Tan)
|
||||
c.SetLineWidth(1.0)
|
||||
c.SetLineColor(generativeart.Lavender)
|
||||
c.FillBackground()
|
||||
c.Draw(generativeart.NewCircleLine(0.02, 600, 1.5))
|
||||
c.ToPNG("circleline.png")
|
||||
}
|
Loading…
Reference in a new issue