generativeart/example/example_circlemove.go

19 lines
359 B
Go
Raw Permalink Normal View History

2021-03-16 03:33:09 +00:00
package main
import (
"github.com/jdxyw/generativeart"
"github.com/jdxyw/generativeart/arts"
2021-03-16 03:33:09 +00:00
"github.com/jdxyw/generativeart/common"
"math/rand"
"time"
)
func main() {
rand.Seed(time.Now().Unix())
c := generativeart.NewCanva(1200, 500)
c.SetBackground(common.White)
c.FillBackground()
c.Draw(arts.NewCircleMove(1000))
2021-03-16 03:33:09 +00:00
c.ToPNG("circlemove.png")
}