コード例 #1
0
ファイル: openvg.go プロジェクト: xranby/openvg
// Circle draws a circle centered at (x,y), with radius r
func Circle(x, y, r float64, style ...string) {
	C.Circle(C.VGfloat(x), C.VGfloat(y), C.VGfloat(r))
}
コード例 #2
0
ファイル: openvg.go プロジェクト: jhautefeuille/openvg
// Circle draws a circle centered at (x,y), with radius r
func Circle(x, y, r VGfloat) {
	C.Circle(C.VGfloat(x), C.VGfloat(y), C.VGfloat(r))
}