LerpPolynomialExtension<T> extension
- on
-
- Polynomial<
T>
- Polynomial<
Methods
-
lerp(
Polynomial< T> other, num t, {DataType<T> ? dataType, PolynomialFormat? format}) → Polynomial<T> -
Interpolates linearly between this Polynomial and
other
with a factor oft
. Ift
is equal to0
the result isthis
, ift
is equal to1
the result isother
. -
lerpEq(
Polynomial< T> other, num t) → Polynomial<T> -
In-place interpolates linearly between this Polynomial and
other
.