gg/examples/circle.go
2016-02-19 13:53:33 -05:00

13 lines
204 B
Go

package main
import "github.com/fogleman/gg"
func main() {
dc := gg.NewContext(1000, 1000)
dc.DrawCircle(500, 500, 400)
dc.SetRGB(0, 0, 0)
dc.SetLineWidth(10)
dc.Stroke()
dc.WritePNG("out.png")
}