public bool AlmostEquals(AABox other, float tolerance = Constants.Tolerance) => Min.AlmostEquals(other.Min, tolerance) && Max.AlmostEquals(other.Max, tolerance);