106 lines
3.2 KiB
C++
106 lines
3.2 KiB
C++
/**********************************************************************
|
|
*
|
|
* GEOS - Geometry Engine Open Source
|
|
* http://geos.osgeo.org
|
|
*
|
|
* Copyright (C) 2005-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: precision/EnhancedPrecisionOp.java rev. 1.9 (JTS-1.7)
|
|
*
|
|
**********************************************************************/
|
|
|
|
#pragma once
|
|
|
|
#include <geos/export.h>
|
|
#include <geos/constants.h> // for int64
|
|
#include <geos/geom/Geometry.h>
|
|
|
|
#include <memory>
|
|
|
|
namespace geos {
|
|
namespace precision { // geos.precision
|
|
|
|
/** \brief
|
|
* Provides versions of Geometry spatial functions which use
|
|
* enhanced precision techniques to reduce the likelihood of robustness
|
|
* problems.
|
|
*/
|
|
class GEOS_DLL EnhancedPrecisionOp {
|
|
|
|
public:
|
|
|
|
/** \brief
|
|
* Computes the set-theoretic intersection of two
|
|
* Geometrys, using enhanced precision.
|
|
*
|
|
* @param geom0 the first Geometry
|
|
* @param geom1 the second Geometry
|
|
* @return the Geometry representing the set-theoretic
|
|
* intersection of the input Geometries.
|
|
*/
|
|
static std::unique_ptr<geom::Geometry> intersection(
|
|
const geom::Geometry* geom0,
|
|
const geom::Geometry* geom1);
|
|
|
|
/**
|
|
* Computes the set-theoretic union of two Geometrys,
|
|
* using enhanced precision.
|
|
* @param geom0 the first Geometry
|
|
* @param geom1 the second Geometry
|
|
* @return the Geometry representing the set-theoretic
|
|
* union of the input Geometries.
|
|
*/
|
|
static std::unique_ptr<geom::Geometry> Union(
|
|
const geom::Geometry* geom0,
|
|
const geom::Geometry* geom1);
|
|
|
|
/**
|
|
* Computes the set-theoretic difference of two Geometrys,
|
|
* using enhanced precision.
|
|
* @param geom0 the first Geometry
|
|
* @param geom1 the second Geometry
|
|
* @return the Geometry representing the set-theoretic
|
|
* difference of the input Geometries.
|
|
*/
|
|
static std::unique_ptr<geom::Geometry> difference(
|
|
const geom::Geometry* geom0,
|
|
const geom::Geometry* geom1);
|
|
|
|
/**
|
|
* Computes the set-theoretic symmetric difference of two
|
|
* Geometrys, using enhanced precision.
|
|
* @param geom0 the first Geometry
|
|
* @param geom1 the second Geometry
|
|
* @return the Geometry representing the set-theoretic symmetric
|
|
* difference of the input Geometries.
|
|
*/
|
|
static std::unique_ptr<geom::Geometry> symDifference(
|
|
const geom::Geometry* geom0,
|
|
const geom::Geometry* geom1);
|
|
|
|
/**
|
|
* Computes the buffer of a Geometry, using enhanced precision.
|
|
* This method should no longer be necessary, since the buffer
|
|
* algorithm now is highly robust.
|
|
*
|
|
* @param geom the first Geometry
|
|
* @param distance the buffer distance
|
|
* @return the Geometry representing the buffer of the input Geometry.
|
|
*/
|
|
static std::unique_ptr<geom::Geometry> buffer(
|
|
const geom::Geometry* geom,
|
|
double distance);
|
|
};
|
|
|
|
|
|
} // namespace geos.precision
|
|
} // namespace geos
|
|
|