Ejemplo n.º 1
0
        /// <summary>
        /// Returns <see langword="true" /> if this Geometry is ‘spatially disjoint’ from another <see cref="Geometry"/>.
        /// </summary>
        public virtual Boolean Disjoint(IGeometry geom)
        {
            Geometry g = checkParameterType(geom);

            return(BoundingBoxSpatialRelations.Disjoint(this, g));
        }