Linearly interpolates the provided objects based on the given t value.
t
static Large lerp(Large a, Large? b, double t) { return Large._(regular: LargeRegular.lerp(a.regular, b?.regular, t)); }