@twinfinity/geometryFunctionsvec3ScaleAndAddvec3ScaleAndAdd Callablevec3ScaleAndAdd(a: Vec3, b: Vec3, s: number, out: Vec3): Vec3out = a + b * s (scale and add — common in projection/interpolation)Parametersa: Vec3b: Vec3s: numberout: Vec3Returns Vec3
out = a + b * s(scale and add — common in projection/interpolation)