109 lines
2.8 KiB
C
109 lines
2.8 KiB
C
|
/**********************************************************************
|
||
|
*
|
||
|
* GEOS - Geometry Engine Open Source
|
||
|
* http://geos.osgeo.org
|
||
|
*
|
||
|
* Copyright (C) 2006 Refractions Research Inc.
|
||
|
*
|
||
|
* This is free software; you can redistribute and/or modify it under
|
||
|
* the terms of the GNU Lesser General Public Licence as published
|
||
|
* by the Free Software Foundation.
|
||
|
* See the COPYING file for more information.
|
||
|
*
|
||
|
*
|
||
|
**********************************************************************
|
||
|
*
|
||
|
* Last port: geom/prep/PreparedPolygonCovers.java rev 1.2 (JTS-1.10)
|
||
|
* (2007-12-12)
|
||
|
*
|
||
|
**********************************************************************/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <geos/geom/prep/AbstractPreparedPolygonContains.h> // inherited
|
||
|
|
||
|
// forward declarations
|
||
|
namespace geos {
|
||
|
namespace geom {
|
||
|
class Geometry;
|
||
|
|
||
|
namespace prep {
|
||
|
class PreparedPolygon;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace geos {
|
||
|
namespace geom { // geos::geom
|
||
|
namespace prep { // geos::geom::prep
|
||
|
|
||
|
/**
|
||
|
* \brief
|
||
|
* Computes the <tt>covers</tt> spatial relationship predicate
|
||
|
* for a {@link PreparedPolygon} relative to all other {@link Geometry} classes.
|
||
|
*
|
||
|
* Uses short-circuit tests and indexing to improve performance.
|
||
|
*
|
||
|
* It is not possible to short-circuit in all cases, in particular
|
||
|
* in the case where the test geometry touches the polygon linework.
|
||
|
* In this case full topology must be computed.
|
||
|
*
|
||
|
* @author Martin Davis
|
||
|
*
|
||
|
*/
|
||
|
class PreparedPolygonCovers : public AbstractPreparedPolygonContains {
|
||
|
private:
|
||
|
protected:
|
||
|
/**
|
||
|
* Computes the full topological <tt>covers</tt> predicate.
|
||
|
* Used when short-circuit tests are not conclusive.
|
||
|
*
|
||
|
* @param geom the test geometry
|
||
|
* @return true if this prepared polygon covers the test geometry
|
||
|
*/
|
||
|
bool fullTopologicalPredicate(const geom::Geometry* geom) override;
|
||
|
|
||
|
public:
|
||
|
/** \brief
|
||
|
* Computes the <tt>covers</tt> predicate between a {@link PreparedPolygon}
|
||
|
* and a {@link Geometry}.
|
||
|
*
|
||
|
* @param prep the prepared polygon
|
||
|
* @param geom a test geometry
|
||
|
* @return true if the polygon covers the geometry
|
||
|
*/
|
||
|
static bool
|
||
|
covers(const PreparedPolygon* const prep, const geom::Geometry* geom)
|
||
|
{
|
||
|
PreparedPolygonCovers polyInt(prep);
|
||
|
return polyInt.covers(geom);
|
||
|
}
|
||
|
|
||
|
/** \brief
|
||
|
* Creates an instance of this operation.
|
||
|
*
|
||
|
* @param prep the PreparedPolygon to evaluate
|
||
|
*/
|
||
|
PreparedPolygonCovers(const PreparedPolygon* const prep)
|
||
|
: AbstractPreparedPolygonContains(prep, false)
|
||
|
{ }
|
||
|
|
||
|
/** \brief
|
||
|
* Tests whether this PreparedPolygon <tt>covers</tt> a given geometry.
|
||
|
*
|
||
|
* @param geom the test geometry
|
||
|
* @return true if the test geometry is covered
|
||
|
*/
|
||
|
bool
|
||
|
covers(const Geometry* geom)
|
||
|
{
|
||
|
return eval(geom);
|
||
|
}
|
||
|
|
||
|
};
|
||
|
|
||
|
} // geos::geom::prep
|
||
|
} // geos::geom
|
||
|
} // geos
|
||
|
|