IntervalFromUnion Method |
Namespace: Rhino.Geometry
public static Interval FromUnion( Interval a, Interval b )
Public Shared Function FromUnion ( a As Interval, b As Interval ) As Interval
The union of two empty sets is empty.
The union of an empty set an a non-empty interval is the non-empty interval.
The union of two non-empty intervals is [min(a.Min(),b.Min()), max(a.Max(),b.Max())]