Main Page | Namespace List | Class Hierarchy | Class List | Directories | File List | Namespace Members | Class Members | Related Pages

SimpleSnapRounder.h

00001 /**********************************************************************
00002  * $Id: SimpleSnapRounder.h 2556 2009-06-06 22:22:28Z strk $
00003  *
00004  * GEOS - Geometry Engine Open Source
00005  * http://geos.refractions.net
00006  *
00007  * Copyright (C) 2006      Refractions Research Inc.
00008  *
00009  * This is free software; you can redistribute and/or modify it under
00010  * the terms of the GNU Lesser General Public Licence as published
00011  * by the Free Software Foundation. 
00012  * See the COPYING file for more information.
00013  *
00014  **********************************************************************
00015  *
00016  * Last port: noding/snapround/SimpleSnapRounder.java rev. 1.4 (JTS-1.9)
00017  *
00018  **********************************************************************/
00019 
00020 #ifndef GEOS_NODING_SNAPROUND_SIMPLESNAPROUNDER_H
00021 #define GEOS_NODING_SNAPROUND_SIMPLESNAPROUNDER_H
00022 
00023 #include <geos/export.h>
00024 
00025 #include <vector>
00026 
00027 #include <geos/inline.h>
00028 
00029 #include <geos/noding/Noder.h> // for inheritance
00030 #include <geos/algorithm/LineIntersector.h> // for composition
00031 #include <geos/geom/Coordinate.h> // for use in vector
00032 #include <geos/geom/PrecisionModel.h> // for inlines (should drop)
00033 
00034 // Forward declarations
00035 namespace geos {
00036         namespace geom {
00037                 //class PrecisionModel;
00038         }
00039         namespace algorithm {
00040                 class LineIntersector;
00041         }
00042         namespace noding {
00043                 class SegmentString;
00044                 class NodedSegmentString;
00045                 namespace snapround {
00046                         class HotPixel;
00047                 }
00048         }
00049 }
00050 
00051 namespace geos {
00052 namespace noding { // geos::noding
00053 namespace snapround { // geos::noding::snapround
00054 
00073 class GEOS_DLL SimpleSnapRounder: public Noder { // implements NoderIface
00074 
00075 private:
00076         const geom::PrecisionModel& pm;
00077         algorithm::LineIntersector li;
00078         double scaleFactor;
00079         std::vector<SegmentString*>* nodedSegStrings;
00080 
00081         void checkCorrectness(std::vector<SegmentString*>& inputSegmentStrings);
00082 
00083         void snapRound(std::vector<SegmentString*>* segStrings,
00084                         algorithm::LineIntersector& li);
00085 
00097         void findInteriorIntersections(std::vector<SegmentString*>& segStrings,
00098                         algorithm::LineIntersector& li, std::vector<geom::Coordinate>& ret);
00099 
00105         void computeSnaps(const std::vector<SegmentString*>& segStrings,
00106                 std::vector<geom::Coordinate>& snapPts);
00107 
00108         void computeSnaps(NodedSegmentString* ss, std::vector<geom::Coordinate>& snapPts);
00109 
00115         void computeVertexSnaps(NodedSegmentString* e0, NodedSegmentString* e1);
00116 
00117 public:
00118 
00119         SimpleSnapRounder(const geom::PrecisionModel& newPm);
00120 
00121         std::vector<SegmentString*>* getNodedSubstrings() const;
00122 
00123         void computeNodes(std::vector<SegmentString*>* inputSegmentStrings);
00124 
00125         void add(const SegmentString* segStr);
00126 
00134         void computeVertexSnaps(const std::vector<SegmentString*>& edges);
00135 };
00136 
00137 } // namespace geos::noding::snapround
00138 } // namespace geos::noding
00139 } // namespace geos
00140 
00141 //#ifdef GEOS_INLINE
00142 //# include "geos/noding/snapround/SimpleSnapRounder.inl"
00143 //#endif
00144 
00145 #endif // GEOS_NODING_SNAPROUND_SIMPLESNAPROUNDER_H
00146 
00147 /**********************************************************************
00148  * $Log$
00149  * Revision 1.3  2006/05/03 15:02:49  strk
00150  * moved some implementations from header to .cpp file (taken out of inline)
00151  *
00152  * Revision 1.2  2006/03/24 09:52:41  strk
00153  * USE_INLINE => GEOS_INLINE
00154  *
00155  * Revision 1.1  2006/03/14 12:55:56  strk
00156  * Headers split: geomgraphindex.h, nodingSnapround.h
00157  *
00158  **********************************************************************/
00159 

Generated on Thu Jun 11 06:17:02 2009 for GEOS by  doxygen 1.4.4