Exemple #1
0
func (p *Point) Draw(ctx *cairo.Surface) {
	ctx.Arc(p.x.Float64(), p.y.Float64(), .1, 0., 2.*math.Pi)
	ctx.Fill()
}