/********************************************************************** * * GEOS - Geometry Engine Open Source * http://geos.osgeo.org * * Copyright (C) 2009 Sandro Santilli * * 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/OrientedCoordinateArray.java rev. 1.1 (JTS-1.9) * **********************************************************************/ #ifndef GEOS_NODING_ORIENTEDCOORDINATEARRAY_H #define GEOS_NODING_ORIENTEDCOORDINATEARRAY_H #include //#include //#include //#include // Forward declarations namespace geos { namespace geom { class CoordinateSequence; } namespace noding { //class SegmentString; } } namespace geos { namespace noding { // geos.noding /** \brief * Allows comparing {@link geom::CoordinateSequence}s * in an orientation-independent way. */ class GEOS_DLL OrientedCoordinateArray { public: /** * Creates a new {@link OrientedCoordinateArray} * for the given {@link geom::CoordinateSequence}. * * @param pts the coordinates to orient */ OrientedCoordinateArray(const geom::CoordinateSequence& pts) : pts(&pts), orientationVar(orientation(pts)) { } /** \brief * Compares two {@link OrientedCoordinateArray}s for their * relative order * * @return -1 this one is smaller * @return 0 the two objects are equal * @return 1 this one is greater * * In JTS, this is used automatically by ordered lists. * In C++, operator< would be used instead.... */ int compareTo(const OrientedCoordinateArray& o1) const; private: static int compareOriented(const geom::CoordinateSequence& pts1, bool orientation1, const geom::CoordinateSequence& pts2, bool orientation2); /** * Computes the canonical orientation for a coordinate array. * * @param pts the array to test * @return true if the points are oriented forwards * @return false