Beispiel #1
0
func divideVectorBy(v *glm.Vector2, x, y float32) {
	v.X = v.X / x
	v.Y = v.Y / y
}