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

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