예제 #1
0
파일: openvg.go 프로젝트: xranby/openvg
// Translate translates the coordinate system to (x,y)
func Translate(x, y float64) {
	C.Translate(C.VGfloat(x), C.VGfloat(y))
}
예제 #2
0
// Translate translates the coordinate system to (x,y)
func Translate(x, y VGfloat) {
	C.Translate(C.VGfloat(x), C.VGfloat(y))
}