lerp<L extends ILerpTo<L> > static method
Implementation
static L? lerp<L extends ILerpTo<L>>(L? from, L? to, double t) {
return from != null && to != null ? from.lerpTo(to, t) : to;
}
static L? lerp<L extends ILerpTo<L>>(L? from, L? to, double t) {
return from != null && to != null ? from.lerpTo(to, t) : to;
}