@twinfinity/geometryFunctionsvec3Midvec3Mid Callablevec3Mid(a: Vec3, b: Vec3, out: Vec3): Vec3out = (a + b) * 0.5 — midpoint of two vectors.Parametersa: Vec3b: Vec3out: Vec3Returns Vec3
out = (a + b) * 0.5— midpoint of two vectors.