It would be nice to have methods for all raymath functions like rl.Vector2Subtract.
Something like this
func (v rl.Vector2) Normalize() rl.Vector2 {
return rl.Vector2Normalize(v)
}
would make this
test := rl.Vector2Normalize(vector)
more readable and shorter
test := vector.Normalize()
What do you think about that?