예제 #1
0
파일: gl.go 프로젝트: james4k/gl
//void glRasterPos3fv (const float *v)
func RasterPos3fv(v *[3]float32) {
	C.glRasterPos3fv((*C.GLfloat)(&v[0]))
}
예제 #2
0
파일: gl.go 프로젝트: Nvveen/gl
//void glRasterPos3fv (const float *v)
func RasterPos3fv(v []float32) {
	if len(v) != 3 {
		panic(ErrorInputSize)
	}
	C.glRasterPos3fv((*C.GLfloat)(&v[0]))
}