/********************************************************************** * * 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: noding/snapround/MCIndexPointSnapper.java r486 (JTS-1.12+) * **********************************************************************/ #ifndef GEOS_NODING_SNAPROUND_MCINDEXPOINTSNAPPER_H #define GEOS_NODING_SNAPROUND_MCINDEXPOINTSNAPPER_H #include #include // Forward declarations namespace geos { namespace index { class SpatialIndex; } namespace noding { class SegmentString; namespace snapround { class HotPixel; } } } namespace geos { namespace noding { // geos::noding namespace snapround { // geos::noding::snapround /** \brief * "Snaps" all {@link SegmentString}s in a {@link SpatialIndex} containing * {@link MonotoneChain}s to a given {@link HotPixel}. * */ class GEOS_DLL MCIndexPointSnapper { public: MCIndexPointSnapper(index::SpatialIndex& nIndex) : index(nIndex) {} /** * Snaps (nodes) all interacting segments to this hot pixel. * The hot pixel may represent a vertex of an edge, * in which case this routine uses the optimization * of not noding the vertex itself * * @param hotPixel the hot pixel to snap to * @param parentEdge the edge containing the vertex, * if applicable, or null * @param vertexIndex the index of the vertex, if applicable, or -1 * @return true if a node was added for this pixel */ bool snap(HotPixel& hotPixel, SegmentString* parentEdge, unsigned int vertexIndex); bool snap(HotPixel& hotPixel) { return snap(hotPixel, 0, 0); } private: index::SpatialIndex& index; // Declare type as noncopyable MCIndexPointSnapper(const MCIndexPointSnapper& other); MCIndexPointSnapper& operator=(const MCIndexPointSnapper& rhs); }; } // namespace geos::noding::snapround } // namespace geos::noding } // namespace geos #endif // GEOS_NODING_SNAPROUND_MCINDEXPOINTSNAPPER_H