📄 connectedelementpointfilter.h
字号:
/********************************************************************** * $Id: ConnectedElementPointFilter.h 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * 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. * **********************************************************************/#ifndef GEOS_OP_DISTANCE_CONNECTEDELEMENTPOINTFILTER_H#define GEOS_OP_DISTANCE_CONNECTEDELEMENTPOINTFILTER_H#include <geos/geom/GeometryFilter.h> // for inheritance#include <vector>// Forward declarationsnamespace geos { namespace geom { class Coordinate; class Geometry; }}namespace geos {namespace operation { // geos::operationnamespace distance { // geos::operation::distance/** \brief * Extracts a single point * from each connected element in a Geometry * (e.g. a polygon, linestring or point) * and returns them in a list */class ConnectedElementPointFilter: public geom::GeometryFilter {private: std::vector<const geom::Coordinate*> *pts;public: /** * Returns a list containing a Coordinate from each Polygon, LineString, and Point * found inside the specified geometry. Thus, if the specified geometry is * not a GeometryCollection, an empty list will be returned. */ static std::vector<const geom::Coordinate*>* getCoordinates(const geom::Geometry *geom); ConnectedElementPointFilter(std::vector<const geom::Coordinate*> *newPts) : pts(newPts) {} void filter_ro(const geom::Geometry *geom); //void filter_rw(geom::Geometry * /*geom*/) {};};} // namespace geos::operation::distance} // namespace geos::operation} // namespace geos#endif // GEOS_OP_DISTANCE_CONNECTEDELEMENTPOINTFILTER_H/********************************************************************** * $Log$ * Revision 1.2 2006/06/12 17:15:29 strk * Removed unused parameters warning * * Revision 1.1 2006/03/21 17:55:01 strk * opDistance.h header split * **********************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -