midpoint
Calculates the midpoint between
self
andrhs
. The midpoint is the average of, or halfway point between, two vectors.a.midpoint(b)
should yield the same result asa.lerp(b, 0.5)
while being slightly cheaper to compute.
Arguments
- _self :
Vec3A
- No Documentation 🚧 - rhs :
Vec3A
- No Documentation 🚧
Returns
- arg0 :
Vec3A
- No Documentation 🚧