lerpTo method
Implementation
@override
InverseRoundedCorner lerpTo(AnyCorner other, double t) {
if (other is! InverseRoundedCorner) {
throw 'Not the same runtime type: ${other.runtimeType}';
}
return InverseRoundedCorner.elliptical(
p: lerpDouble(p, other.p, t)!,
n: lerpDouble(n, other.n, t)!,
);
}