예제 #1
0
 /// <summary>
 /// Performs an intersection of this line segment with the specified envelope
 /// </summary>
 /// <param name="inEnvelope">The envelope to compare against</param>
 /// <returns>An ILineSegment, or null if there is no intersection.</returns>
 public ILineSegment Intersection(Envelope inEnvelope)
 {
     return inEnvelope.Intersection(this);
 }
예제 #2
0
 /// <summary>
 /// Performs an intersection of this line segment with the specified envelope
 /// </summary>
 /// <param name="inEnvelope">The envelope to compare against</param>
 /// <returns>An ILineSegment, or null if there is no intersection.</returns>
 public ILineSegment Intersection(Envelope inEnvelope)
 {
     return(inEnvelope.Intersection(this));
 }