~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/noding/snapround/SegmentSnapper.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2006-11-06 21:35:52 UTC
  • mfrom: (3.1.3 feisty)
  • Revision ID: james.westby@ubuntu.com-20061106213552-m03o92ggj1na737b
Tags: 2.2.3-3
debian/control: move doxygen from build-depends-indep to build-depends.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/**********************************************************************
2
 
 * $Id: SegmentSnapper.cpp,v 1.3 2004/12/08 13:54:43 strk Exp $
 
2
 * $Id: SegmentSnapper.cpp,v 1.3.2.1 2005/05/23 17:10:08 strk Exp $
3
3
 *
4
4
 * GEOS - Geometry Engine Open Source
5
5
 * http://geos.refractions.net
13
13
 *
14
14
 **********************************************************************
15
15
 * $Log: SegmentSnapper.cpp,v $
 
16
 * Revision 1.3.2.1  2005/05/23 17:10:08  strk
 
17
 * Stricter C++ syntax (math.h=>cmath, ieeefp.h in "C" block)
 
18
 *
16
19
 * Revision 1.3  2004/12/08 13:54:43  strk
17
20
 * gcc warnings checked and fixed, general cleanups.
18
21
 *
30
33
 
31
34
 
32
35
#include <geos/nodingSnapround.h>
33
 
#include <math.h>
 
36
#include <cmath>
34
37
 
35
38
namespace geos {
36
39