Ejemplo n.º 1
0
Archivo: atlas.go Proyecto: andrebq/exp
func divideVectorBy(v *glm.Vector2, x, y float32) {
	v.X = v.X / x
	v.Y = v.Y / y
}