generativeart/example/example_circleloop.go

23 lines
446 B
Go
Raw Normal View History

2021-03-03 08:12:50 +00:00
package main
import (
2021-03-03 16:48:26 +00:00
"github.com/jdxyw/generativeart"
"github.com/jdxyw/generativeart/arts"
"github.com/jdxyw/generativeart/common"
2021-03-03 08:12:50 +00:00
"math/rand"
"time"
)
func main() {
rand.Seed(time.Now().Unix())
2021-03-04 02:46:41 +00:00
c := generativeart.NewCanva(500, 500)
c.SetBackground(common.Black)
2021-03-03 08:12:50 +00:00
c.SetLineWidth(1)
c.SetLineColor(common.Orange)
2021-03-03 08:12:50 +00:00
c.SetAlpha(30)
c.SetIterations(1000)
c.FillBackground()
c.Draw(arts.NewCircleLoop(100))
2021-03-03 08:12:50 +00:00
c.ToPNG("circleloop.png")
}