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