lerpEnum<T> function
Linearly interpolate between two enum.
Implementation
T? lerpEnum<T>(T? a, T? b, double t) => t < 0.5 ? a : b;
Linearly interpolate between two enum.
T? lerpEnum<T>(T? a, T? b, double t) => t < 0.5 ? a : b;