1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252
|
/**********************************************************************
* $Id: HCoordinate.cpp 2043 2007-12-17 23:05:42Z mloskot $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
* Copyright (C) 2005 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.
*
**********************************************************************
*
* Last port: algorithm/HCoordinate.java rev. 1.17 (JTS-1.7)
*
**********************************************************************/
#include <geos/algorithm/HCoordinate.h>
#include <geos/algorithm/NotRepresentableException.h>
#include <geos/geom/Coordinate.h>
#include <geos/platform.h>
#include <memory>
#include <cmath>
#include <limits>
#include <iostream>
#include <iomanip>
#ifndef GEOS_DEBUG
#define GEOS_DEBUG 0
#endif
// Define to make -ffloat-store be effective for this class
//#define STORE_INTERMEDIATE_COMPUTATION_VALUES 1
using namespace std;
using namespace geos::geom;
namespace geos {
namespace algorithm { // geos.algorithm
/*public static*/
void
HCoordinate::intersection(const Coordinate &p1, const Coordinate &p2,
const Coordinate &q1, const Coordinate &q2, Coordinate &ret)
{
#if GEOS_DEBUG
cerr << __FUNCTION__ << ":" << endl
<< setprecision(20)
<< " p1: " << p1 << endl
<< " p2: " << p2 << endl
<< " q1: " << q1 << endl
<< " q2: " << q2 << endl;
#endif
HCoordinate hc1p1(p1);
#if GEOS_DEBUG
cerr << "HCoordinate(p1): "
<< hc1p1 << endl;
#endif
HCoordinate hc1p2(p2);
#if GEOS_DEBUG
cerr << "HCoordinate(p2): "
<< hc1p2 << endl;
#endif
HCoordinate l1(hc1p1, hc1p2);
#if GEOS_DEBUG
cerr << "L1 - HCoordinate(HCp1, HCp2): "
<< l1 << endl;
#endif
HCoordinate hc2q1(q1);
#if GEOS_DEBUG
cerr << "HCoordinate(q1): "
<< hc2q1 << endl;
#endif
HCoordinate hc2q2(q2);
#if GEOS_DEBUG
cerr << "HCoordinate(q2): "
<< hc2q2 << endl;
#endif
HCoordinate l2(hc2q1, hc2q2);
#if GEOS_DEBUG
cerr << "L2 - HCoordinate(HCq1, HCq2): "
<< l2 << endl;
#endif
HCoordinate intHCoord(l1, l2);
#if GEOS_DEBUG
cerr << "HCoordinate(L1, L2): "
<< intHCoord << endl;
#endif
intHCoord.getCoordinate(ret);
}
/*public*/
HCoordinate::HCoordinate()
:
x(0.0),
y(0.0),
w(1.0)
{
}
/*public*/
HCoordinate::HCoordinate(long double _x, long double _y, long double _w)
:
x(_x),
y(_y),
w(_w)
{
}
/*public*/
HCoordinate::HCoordinate(const Coordinate& p)
:
x(p.x),
y(p.y),
w(1.0)
{
}
/*public*/
#ifndef STORE_INTERMEDIATE_COMPUTATION_VALUES
HCoordinate::HCoordinate(const HCoordinate &p1, const HCoordinate &p2)
:
x( p1.y*p2.w - p2.y*p1.w ),
y( p2.x*p1.w - p1.x*p2.w ),
w( p1.x*p2.y - p2.x*p1.y )
{
}
#else // def STORE_INTERMEDIATE_COMPUTATION_VALUES
HCoordinate::HCoordinate(const HCoordinate &p1, const HCoordinate &p2)
{
long double xf1 = p1.y*p2.w;
long double xf2 = p2.y*p1.w;
x = xf1 - xf2;
long double yf1 = p2.x*p1.w;
long double yf2 = p1.x*p2.w;
y = yf1 - yf2;
long double wf1 = p1.x*p2.y;
long double wf2 = p2.x*p1.y;
w = wf1 - wf2;
#if GEOS_DEBUG
cerr
<< " xf1: " << xf1 << endl
<< " xf2: " << xf2 << endl
<< " yf1: " << yf1 << endl
<< " yf2: " << yf2 << endl
<< " wf1: " << wf1 << endl
<< " wf2: " << wf2 << endl
<< " x: " << x << endl
<< " y: " << y << endl
<< " w: " << w << endl;
#endif // def GEOS_DEBUG
}
#endif // def STORE_INTERMEDIATE_COMPUTATION_VALUES
/*public*/
long double
HCoordinate::getX() const
{
long double a = x/w;
if (std::fabs(a) > std::numeric_limits<double>::max())
{
throw NotRepresentableException();
}
return a;
}
/*public*/
long double
HCoordinate::getY() const
{
long double a = y/w;
if (std::fabs(a) > std::numeric_limits<double>::max())
{
throw NotRepresentableException();
}
return a;
}
/*public*/
void
HCoordinate::getCoordinate(Coordinate &ret) const
{
ret = Coordinate(static_cast<double>(getX()), static_cast<double>(getY()));
}
std::ostream& operator<< (std::ostream& o, const HCoordinate& c)
{
return o << "(" << c.x << ", "
<< c.y << ") [w: " << c.w << "]";
}
} // namespace geos.algorithm
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.24 2006/06/27 15:59:36 strk
* * source/algorithm/HCoordinate.cpp: added support for MingW -ansi builds.
*
* Revision 1.23 2006/04/20 14:27:40 strk
* HCoordinate class changed to use long double types internally, in order to improve computation precision
*
* Revision 1.22 2006/04/20 11:11:57 strk
* source/algorithm/HCoordinate.cpp: added compile time define to force storage of intermediate computation values to variables (in order to make the -ffloat-store gcc switch effective). Disabled by default.
*
* Revision 1.21 2006/04/14 09:02:16 strk
* Hadded output operator and debugging prints for HCoordinate.
*
* Revision 1.20 2006/04/04 11:37:00 strk
* Port information + initialization lists in ctors
*
* Revision 1.19 2006/04/04 11:28:12 strk
* NotRepresentable condition detected using finite() from <cmath>
* rather then using FINITE() macro. Made ::intersection() body
* more readable.
*
* Revision 1.18 2006/03/21 11:12:23 strk
* Cleanups: headers inclusion and Log section
*
* Revision 1.17 2006/03/09 16:46:45 strk
* geos::geom namespace definition, first pass at headers split
**********************************************************************/
|