114 lines
2.8 KiB
C
114 lines
2.8 KiB
C
|
/**********************************************************************
|
||
|
*
|
||
|
* GEOS - Geometry Engine Open Source
|
||
|
* http://geos.osgeo.org
|
||
|
*
|
||
|
* Copyright (C) 2020 Paul Ramsey <pramsey@cleverelephant.ca>
|
||
|
*
|
||
|
* 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.
|
||
|
*
|
||
|
**********************************************************************/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <geos/geom/Point.h>
|
||
|
#include <geos/operation/overlayng/OverlayNG.h>
|
||
|
|
||
|
#include <geos/export.h>
|
||
|
#include <vector>
|
||
|
#include <memory>
|
||
|
|
||
|
// Forward declarations
|
||
|
namespace geos {
|
||
|
namespace geom {
|
||
|
class GeometryFactory;
|
||
|
}
|
||
|
namespace operation {
|
||
|
namespace overlayng {
|
||
|
class OverlayEdge;
|
||
|
class OverlayGraph;
|
||
|
class OverlayLabel;
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace geos { // geos.
|
||
|
namespace operation { // geos.operation
|
||
|
namespace overlayng { // geos.operation.overlayng
|
||
|
|
||
|
/**
|
||
|
* Extracts Point resultants from an overlay graph
|
||
|
* created by an Intersection operation
|
||
|
* between non-Point inputs.
|
||
|
* Points may be created during intersection
|
||
|
* if lines or areas touch one another at single points.
|
||
|
* Intersection is the only overlay operation which can
|
||
|
* result in Points from non-Point inputs.
|
||
|
* <p>
|
||
|
* Overlay operations where one or more inputs
|
||
|
* are Points are handled via a different code path.
|
||
|
*
|
||
|
*
|
||
|
* @author Martin Davis
|
||
|
*
|
||
|
* @see OverlayPoints
|
||
|
*
|
||
|
*/
|
||
|
class GEOS_DLL IntersectionPointBuilder {
|
||
|
|
||
|
private:
|
||
|
|
||
|
// Members
|
||
|
OverlayGraph* graph;
|
||
|
const geom::GeometryFactory* geometryFactory;
|
||
|
std::vector<std::unique_ptr<geom::Point>> points;
|
||
|
/**
|
||
|
* Controls whether lines created by area topology collapses
|
||
|
* to participate in the result computation.
|
||
|
* True provides the original JTS semantics.
|
||
|
*/
|
||
|
bool isAllowCollapseLines;
|
||
|
|
||
|
// Methods
|
||
|
void addResultPoints();
|
||
|
|
||
|
/**
|
||
|
* Tests if a node is a result point.
|
||
|
* This is the case if the node is incident on edges from both
|
||
|
* inputs, and none of the edges are themselves in the result.
|
||
|
*/
|
||
|
bool isResultPoint(OverlayEdge* nodeEdge) const;
|
||
|
bool isEdgeOf(const OverlayLabel* label, uint8_t i) const;
|
||
|
|
||
|
|
||
|
public:
|
||
|
|
||
|
|
||
|
IntersectionPointBuilder(OverlayGraph* p_graph, const geom::GeometryFactory* geomFact)
|
||
|
: graph(p_graph)
|
||
|
, geometryFactory(geomFact)
|
||
|
, isAllowCollapseLines(!OverlayNG::STRICT_MODE_DEFAULT)
|
||
|
{}
|
||
|
|
||
|
std::vector<std::unique_ptr<geom::Point>> getPoints();
|
||
|
|
||
|
IntersectionPointBuilder(const IntersectionPointBuilder&) = delete;
|
||
|
IntersectionPointBuilder& operator=(const IntersectionPointBuilder&) = delete;
|
||
|
|
||
|
void setStrictMode(bool p_isStrictMode)
|
||
|
{
|
||
|
isAllowCollapseLines = ! p_isStrictMode;
|
||
|
}
|
||
|
|
||
|
|
||
|
};
|
||
|
|
||
|
|
||
|
} // namespace geos.operation.overlayng
|
||
|
} // namespace geos.operation
|
||
|
} // namespace geos
|
||
|
|