📄 coordinateoperation.cpp
字号:
/********************************************************************** * $Id: CoordinateOperation.cpp 1820 2006-09-06 16:54:23Z mloskot $ * * GEOS - Geometry Engine Open Source * http://geos.refractions.net * * Copyright (C) 2001-2002 Vivid Solutions 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. * **********************************************************************/#include <typeinfo>//#include <geos/geomUtil.h>//#include <geos/util.h> // to be removed when util.h is finished#include <geos/geom/util/CoordinateOperation.h>#include <geos/geom/CoordinateSequence.h>#include <geos/geom/LinearRing.h>#include <geos/geom/LineString.h>#include <geos/geom/Point.h>#include <geos/geom/Geometry.h>#include <geos/geom/GeometryFactory.h>namespace geos {namespace geom { // geos.geomnamespace util { // geos.geom.utilGeometry*CoordinateOperation::edit(const Geometry *geometry, const GeometryFactory *factory){ const LinearRing *ring = dynamic_cast<const LinearRing *>(geometry); if (ring) { const CoordinateSequence *coords = ring->getCoordinatesRO(); CoordinateSequence *newCoords = edit(coords,geometry); return factory->createLinearRing(newCoords); } const LineString *line = dynamic_cast<const LineString *>(geometry); if (line) { const CoordinateSequence *coords = line->getCoordinatesRO(); CoordinateSequence *newCoords = edit(coords,geometry); return factory->createLineString(newCoords); } if (typeid(*geometry)==typeid(Point)) { CoordinateSequence *coords = geometry->getCoordinates(); CoordinateSequence *newCoords = edit(coords,geometry); delete coords; return factory->createPoint(newCoords); } return geometry->clone();}} // namespace geos.geom.util} // namespace geos.geom} // namespace geos/********************************************************************** * $Log$ * Revision 1.1 2006/03/09 16:46:47 strk * geos::geom namespace definition, first pass at headers split * **********************************************************************/
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -