コード例 #1
0
ファイル: openvg.go プロジェクト: xranby/openvg
// Rotate rotates the coordinate system around the specifed angle
func Rotate(r float64) {
	C.Rotate(C.VGfloat(r))
}
コード例 #2
0
ファイル: openvg.go プロジェクト: jhautefeuille/openvg
// Rotate rotates the coordinate system around the specifed angle
func Rotate(r VGfloat) {
	C.Rotate(C.VGfloat(r))
}