math.lerp

Linearly interpolates from its first argument to its second argument, with the third argument as the parameter
Works on both regular numbers,
vectors of the same type, and matrices of the same type
overload 1:
math.lerp(a, b, t)
Method Property Fluent Description Representation
a accepts a Number
b accepts a Number
t accepts a Number
Return Value a Number
overload 2:
math.lerp(a, b, t)
Method Property Fluent Description Representation
a accepts a Vector2
b accepts a Vector2
t accepts a Number
Return Value a Vector2
overload 3:
math.lerp(a, b, t)
Method Property Fluent Description Representation
a accepts a Vector3
b accepts a Vector3
t accepts a Number
Return Value a Vector3
overload 4:
math.lerp(a, b, t)
Method Property Fluent Description Representation
a accepts a Vector4
b accepts a Vector4
t accepts a Number
Return Value a Vector4
overload 5:
math.lerp(a, b, t)
typings.2002444082typings.2002444082typings.2002444082
Method Property Fluent Description Representation
a accepts
b accepts
t accepts a Number
Return Value
overload 6:
math.lerp(a, b, t)
typings.2002444083typings.2002444083typings.2002444083
Method Property Fluent Description Representation
a accepts
b accepts
t accepts a Number
Return Value
a a