Пример #1
0
 /// <summary> Determines whether this DbGeometry is spatially disjoint from the specified DbGeometry argument. </summary>
 /// <returns>true if other is disjoint from this geometry value; otherwise false.</returns>
 /// <param name="other">The geometry value that should be compared with this geometry value for disjointness.</param>
 /// <exception cref="T:System.ArgumentNullException">other</exception>
 public bool Disjoint(DbGeometry other)
 {
     Check.NotNull(other, "other");
     return(_spatialProvider.Disjoint(this, other));
 }