00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef GEOS_NODING_SCALEDNODER_H
00021 #define GEOS_NODING_SCALEDNODER_H
00022
00023 #include <geos/export.h>
00024
00025 #include <cassert>
00026 #include <vector>
00027
00028 #include <geos/inline.h>
00029 #include <geos/noding/Noder.h>
00030
00031 #include <geos/util.h>
00032
00033 #ifdef _MSC_VER
00034 #pragma warning(push)
00035 #pragma warning(disable: 4251) // warning C4251: needs to have dll-interface to be used by clients of class
00036 #endif
00037
00038
00039 namespace geos {
00040 namespace geom {
00041 class Coordinate;
00042 class CoordinateSequence;
00043 }
00044 namespace noding {
00045 class SegmentString;
00046 }
00047 }
00048
00049 namespace geos {
00050 namespace noding {
00051
00062 class GEOS_DLL ScaledNoder : public Noder {
00063
00064 public:
00065
00066 bool isIntegerPrecision() { return (scaleFactor == 1.0); }
00067
00068 ScaledNoder(Noder& n, double nScaleFactor,
00069 double nOffsetX=0.0, double nOffsetY=0.0)
00070 :
00071 noder(n),
00072 scaleFactor(nScaleFactor),
00073 offsetX(nOffsetX),
00074 offsetY(nOffsetY),
00075 isScaled(nScaleFactor!=1.0)
00076 {}
00077
00078 ~ScaledNoder();
00079
00080 std::vector<SegmentString*>* getNodedSubstrings() const;
00081
00082 void computeNodes(std::vector<SegmentString*>* inputSegStr);
00083
00084
00085
00086 void filter_ro(const geom::Coordinate* c)
00087 {
00088 ::geos::ignore_unused_variable_warning(c);
00089 assert(0);
00090 }
00091
00092 void filter_rw(geom::Coordinate* c) const;
00093
00094 private:
00095
00096 Noder& noder;
00097
00098 double scaleFactor;
00099
00100 double offsetX;
00101
00102 double offsetY;
00103
00104 bool isScaled;
00105
00106 void rescale(std::vector<SegmentString*>& segStrings) const;
00107
00108 void scale(std::vector<SegmentString*>& segStrings) const;
00109
00110 class Scaler;
00111
00112 class ReScaler;
00113
00114 friend class ScaledNoder::Scaler;
00115
00116 friend class ScaledNoder::ReScaler;
00117
00118 mutable std::vector<geom::CoordinateSequence*> newCoordSeq;
00119
00120
00121 ScaledNoder(const ScaledNoder& other);
00122 ScaledNoder& operator=(const ScaledNoder& rhs);
00123 };
00124
00125 }
00126 }
00127
00128 #ifdef _MSC_VER
00129 #pragma warning(pop)
00130 #endif
00131
00132
00133
00134
00135
00136 #endif // GEOS_NODING_SCALEDNODER_H
00137
00138
00139
00140
00141
00142
00143
00144
00145
00146
00147
00148
00149
00150
00151
00152
00153
00154
00155
00156
00157
00158
00159
00160
00161
00162
00163
00164
00165
00166