DYT/Tool/OpenSceneGraph-3.6.5/include/geos/coverage/VertexRingCounter.h

72 lines
1.5 KiB
C
Raw Normal View History

2024-12-24 23:49:36 +00:00
/**********************************************************************
*
* GEOS - Geometry Engine Open Source
* http://geos.osgeo.org
*
* Copyright (C) 2021 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 <map>
#include <geos/geom/CoordinateSequenceFilter.h>
#include <geos/geom/Coordinate.h>
#include <geos/export.h>
namespace geos {
namespace geom {
class CoordinateSequence;
class Geometry;
}
}
using geos::geom::Coordinate;
using geos::geom::CoordinateSequence;
using geos::geom::CoordinateSequenceFilter;
using geos::geom::Geometry;
namespace geos {
namespace coverage { // geos::coverage
class VertexRingCounter : public CoordinateSequenceFilter
{
public:
VertexRingCounter(std::map<Coordinate, std::size_t>& counts)
: vertexCounts(counts)
{};
bool isGeometryChanged() const override {
return false;
}
bool isDone() const override {
return false;
}
void filter_ro(const CoordinateSequence& seq, std::size_t i) override;
static void count(
const std::vector<const Geometry*>& geoms,
std::map<Coordinate, std::size_t>& counts);
private:
std::map<Coordinate, std::size_t>& vertexCounts;
}; // VertexRingCounter
} // geos::coverage
} // geos