///| Linear easing function

///|
/// Linear interpolation function
/// Simply returns the input value t as is (identity function)
/// This represents linear motion with no acceleration or deceleration
pub fn linear(t : Double) -> Double {
  t
}