Esempio n. 1
0
        /// <summary>
        /// Returns <see langword="true" /> if this <see cref="Geometry"/> 'spatially overlaps' another <see cref="Geometry"/>.
        /// </summary>
        public virtual Boolean Overlaps(IGeometry geom)
        {
            Geometry g = checkParameterType(geom);

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