simple-easing 1.0.1

Set of simple easing functions
Documentation
/// <https://easings.net/#easeInExpo>
pub fn expo_in(t: f32) -> f32 {
	if t <= 0.0 {
		0.0
	} else {
		2f32.powf(10.0 * t - 10.0)
	}
}

/// <https://easings.net/#easeOutExpo>
pub fn expo_out(t: f32) -> f32 {
	if 1.0 <= t {
		1.0
	} else {
		1.0 - 2f32.powf(-10.0 * t)
	}
}

/// <https://easings.net/#easeInOutExpo>
pub fn expo_in_out(t: f32) -> f32 {
	if t <= 0.0 {
		0.0
	} else if 1.0 <= t {
		1.0
	} else if t < 0.5 {
		2f32.powf(20.0 * t - 10.0) / 2.0
	} else {
		(2.0 - 2f32.powf(-20.0 * t + 10.0)) / 2.0
	}
}