gg/examples/ellipse.go

20 lines
349 B
Go
Raw Normal View History

2016-02-19 19:16:40 +01:00
package main
import "github.com/fogleman/gg"
func main() {
const S = 1024
dc := gg.NewContext(S, S)
dc.SetRGB(1, 1, 1)
dc.Clear()
2016-02-19 19:34:04 +01:00
dc.SetRGBA(0, 0, 0, 0.1)
2016-02-19 19:16:40 +01:00
for i := 0; i < 360; i += 15 {
2016-02-19 19:34:04 +01:00
dc.Push()
2016-02-19 19:16:40 +01:00
dc.RotateAbout(gg.Radians(float64(i)), S/2, S/2)
dc.DrawEllipse(S/2, S/2, S*7/16, S/8)
dc.Fill()
2016-02-19 19:34:04 +01:00
dc.Pop()
2016-02-19 19:16:40 +01:00
}
dc.WritePNG("out.png")
}