# Functions
Approximately compares two floating point values and returns true if they are similar.
Clamp restricts the given value to the range defined by the given minimum and maximum values.
Lerp linearly interpolates between two float64, a and b, by amount t.
LerpUnclamped linearly interpolates between two float64, a and b, by amount t.
Max returns the largest number.
Min returns the smallest number.
NormalizeAngle normalizes an angle in radians to the range [-π, π].
QuadraticFormula provides the solution(s) to a quadratic equation.