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
|
/**********************************************************************
* $Id: GeometryGraphOperation.cpp 1820 2006-09-06 16:54:23Z mloskot $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2005-2006 Refractions Research Inc.
* 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.
*
**********************************************************************
*
* Last port: operation/GeometryGraphOperation.java rev. 1.14 (JTS-1.7)
*
**********************************************************************/
#include <geos/operation/GeometryGraphOperation.h>
#include <geos/algorithm/LineIntersector.h>
#include <geos/geomgraph/GeometryGraph.h>
#include <geos/geom/Geometry.h>
#include <geos/geom/PrecisionModel.h>
#include <cassert>
using namespace geos::algorithm;
using namespace geos::geomgraph;
using namespace geos::geom;
namespace geos {
namespace operation { // geos.operation
//LineIntersector* GeometryGraphOperation::li=new LineIntersector();
GeometryGraphOperation::GeometryGraphOperation(const Geometry *g0,
const Geometry *g1)
:
arg(2)
{
const PrecisionModel* pm0 = g0->getPrecisionModel();
assert(pm0);
const PrecisionModel* pm1 = g1->getPrecisionModel();
assert(pm1);
// use the most precise model for the result
if (pm0->compareTo(pm1) >= 0)
setComputationPrecision(pm0);
else
setComputationPrecision(pm1);
arg[0]=new GeometryGraph(0, g0);
arg[1]=new GeometryGraph(1, g1);
}
GeometryGraphOperation::GeometryGraphOperation(const Geometry *g0):
arg(1)
{
const PrecisionModel* pm0 = g0->getPrecisionModel();
assert(pm0);
setComputationPrecision(pm0);
arg[0]=new GeometryGraph(0, g0);
}
const Geometry*
GeometryGraphOperation::getArgGeometry(unsigned int i) const
{
assert(i<arg.size());
return arg[i]->getGeometry();
}
/*protected*/
void
GeometryGraphOperation::setComputationPrecision(const PrecisionModel* pm)
{
assert(pm);
resultPrecisionModel=pm;
li.setPrecisionModel(resultPrecisionModel);
}
GeometryGraphOperation::~GeometryGraphOperation()
{
for(unsigned int i=0; i<arg.size(); ++i)
{
delete arg[i];
}
}
} // namespace geos.operation
} // namespace geos
/**********************************************************************
* $Log$
* Revision 1.23 2006/04/03 15:54:34 strk
* - getArgGeometry() parameter type changed from 'int' to 'unsigned int'
* - Added port informations
* - minor assertions checking
* - minor cleanups
*
* Revision 1.22 2006/03/21 21:42:54 strk
* planargraph.h header split, planargraph:: classes renamed to match JTS symbols
*
* Revision 1.21 2006/03/02 14:34:43 strk
* GeometryGraphOperation::li made a non-static member, and not more a pointer
*
* Revision 1.20 2006/02/27 09:05:33 strk
* Doxygen comments, a few inlines and general cleanups
*
* Revision 1.19 2006/02/19 19:46:49 strk
* Packages <-> namespaces mapping for most GEOS internal code (uncomplete, but working). Dir-level libs for index/ subdirs.
*
**********************************************************************/
|