| calculateBridge (Interval, Interval) | in
Interval | Returns the bridging Interval between the given Intervals. |
| calculateIntersection (Interval, Interval) | in
Interval | Returns the intersection of the given Intervals. |
| calculateSpanningRectangle (Interval, Interval) | in
Interval | Returns the spanning rectangle between the given Intervals. |
| calculateUnion (Interval, Interval) | in
Interval | Returns the union of the given Intervals. |
| calculateUnion (Interval, number) | in
Interval | Returns the union of the given Intervals and the given value. |
| coveredBy (Interval, number?) | in
Interval | Checks whether or not the given Interval fully covers this Interval given a small epsilon value. |
| distanceTo (Interval) | in
Interval | Returns the distance between this Interval and the given Interval. |
| hasSameRange (Interval, number?) | in
Interval | Checks whether or not this Interval and the given Interval cover the same range. |
| intersects (Interval, number?) | in
Interval | Checks whether or not this Interval intersects with the given Interval, considering the given minimum intersection length. |
| isGreaterThan (Interval) | in
Interval | Checks whether or not the lower bound of this Interval is greater than the upper bound of the given interval. |
| isLessThan (Interval) | in
Interval | Checks whether or not the upper bound of this Interval is smaller than the lower bound of the given interval. |
| OrthogonalInterval (Interval, number, boolean) | in
OrthogonalInterval | Creates a new OrthogonalInterval instance with the given interval bounds. |