~sharpie/geos/3.3.2

« back to all changes in this revision

Viewing changes to source/headers/geos/opBuffer.h

  • 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: opBuffer.h,v 1.6 2004/12/08 13:54:43 strk Exp $
 
2
 * $Id: opBuffer.h,v 1.6.2.1 2005/06/30 18:31:21 strk Exp $
3
3
 *
4
4
 * GEOS - Geometry Engine Open Source
5
5
 * http://geos.refractions.net
80
80
 
81
81
        Coordinate *rightMostCoord;
82
82
 
 
83
        Envelope *env;
 
84
 
83
85
        /*
84
86
         * Adds all nodes and edges reachable from this node to the subgraph.
85
87
         * Uses an explicit stack to avoid a large depth of recursion.
156
158
         * be built before holes.
157
159
         */
158
160
        int compareTo(void* o);
 
161
 
 
162
        /**
 
163
         * Computes the envelope of the edges in the subgraph.
 
164
         * The envelope is cached after being computed.
 
165
         *
 
166
         * @return the envelope of the graph.
 
167
         */
 
168
        Envelope *getEnvelope();
159
169
};
160
170
 
161
171
/*
723
733
 
724
734
/**********************************************************************
725
735
 * $Log: opBuffer.h,v $
 
736
 * Revision 1.6.2.1  2005/06/30 18:31:21  strk
 
737
 * Ported SubgraphDepthLocator optimizations from JTS code
 
738
 *
726
739
 * Revision 1.6  2004/12/08 13:54:43  strk
727
740
 * gcc warnings checked and fixed, general cleanups.
728
741
 *