Example #1
0
 /// <summary>
 /// Check if the specified range is inside this range
 /// </summary>
 /// 
 /// <param name="range">Range to check</param>
 /// 
 /// <returns><b>True</b> if the specified range is inside this range or
 /// <b>false</b> otherwise.</returns>
 /// 
 public bool IsInside( DoubleRange range )
 {
     return ( ( IsInside( range.min ) ) && ( IsInside( range.max ) ) );
 }
Example #2
0
 /// <summary>
 /// Check if the specified range overlaps with this range
 /// </summary>
 ///
 /// <param name="range">Range to check for overlapping</param>
 ///
 /// <returns><b>True</b> if the specified range overlaps with this range or
 /// <b>false</b> otherwise.</returns>
 ///
 public bool IsOverlapping(DoubleRange range)
 {
     return((IsInside(range.min)) || (IsInside(range.max)));
 }
Example #3
0
 /// <summary>
 /// Check if the specified range overlaps with this range
 /// </summary>
 /// 
 /// <param name="range">Range to check for overlapping</param>
 /// 
 /// <returns><b>True</b> if the specified range overlaps with this range or
 /// <b>false</b> otherwise.</returns>
 /// 
 public bool IsOverlapping( DoubleRange range )
 {
     return ( ( IsInside( range.min ) ) || ( IsInside( range.max ) ) );
 }
Example #4
0
 /// <summary>
 /// Check if the specified range is inside this range
 /// </summary>
 ///
 /// <param name="range">Range to check</param>
 ///
 /// <returns><b>True</b> if the specified range is inside this range or
 /// <b>false</b> otherwise.</returns>
 ///
 public bool IsInside(DoubleRange range)
 {
     return((IsInside(range.min)) && (IsInside(range.max)));
 }