/// <summary>
 ///   Check if the specified range is inside of the range.
 /// </summary>
 /// <param name = "range">Range to check.</param>
 /// <returns><b>True</b> if the specified range is inside of the range or
 /// <b>false</b> otherwise.</returns>
 public bool IsInside(FloatRange range)
 {
     return IsInside(range.min) && IsInside(range.max);
 }
 /// <summary>
 ///   Check if the specified range overlaps with the range.
 /// </summary>
 /// <param name = "range">Range to check for overlapping.</param>
 /// <returns><b>True</b> if the specified range overlaps with the range or
 /// <b>false</b> otherwise.</returns>
 public bool IsOverlapping(FloatRange range)
 {
     return IsInside(range.min) || IsInside(range.max);
 }