~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/noding/SegmentString.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-03-27 15:54:54 UTC
  • mfrom: (1.2.1 upstream) (5.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090327155454-o3u9j86rzrtcp5vl
Tags: 3.1.0-1
* New upstream release.
* This version includes also a missing header inclusion, which caused FTBFS
  on armel. (Closes: #520447)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**********************************************************************
2
 
 * $Id: SegmentString.cpp 1872 2006-10-20 11:18:39Z strk $
 
2
 * $Id: SegmentString.cpp 2127 2008-05-20 21:25:21Z mloskot $
3
3
 *
4
4
 * GEOS - Geometry Engine Open Source
5
5
 * http://geos.refractions.net
54
54
SegmentString::addIntersection(LineIntersector *li, unsigned int segmentIndex,
55
55
                int geomIndex, int intIndex)
56
56
{
 
57
    UNREFERENCED_PARAMETER(geomIndex);
 
58
 
57
59
        const Coordinate &intPt=li->getIntersection(intIndex);
58
60
        addIntersection(intPt, segmentIndex);
59
61
}