/// <summary> /// It's either 1, or it's not /// </summary> internal static float EaseStep(float p) { return(Math.Floor(p)); }
/// <summary> /// It's either 1, or it's not /// </summary> internal static float EaseStep(float p) => Math.Floor(p);