/usr/include/geos/geom/LineString.h is in libgeos-dev 3.2.2-3ubuntu1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 | /**********************************************************************
* $Id: LineString.h 2556 2009-06-06 22:22:28Z strk $
*
* GEOS - Geometry Engine Open Source
* http://geos.refractions.net
*
* Copyright (C) 2001-2002 Vivid Solutions Inc.
* Copyright (C) 2005 2006 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: geom/LineString.java rev. 1.46
*
**********************************************************************/
#ifndef GEOS_GEOS_LINESTRING_H
#define GEOS_GEOS_LINESTRING_H
#include <geos/export.h>
#include <geos/platform.h> // do we need this ?
#include <geos/geom/Geometry.h> // for inheritance
#include <geos/geom/CoordinateSequence.h> // for proper use of auto_ptr<>
#include <geos/geom/Envelope.h> // for proper use of auto_ptr<>
#include <geos/geom/Dimension.h> // for Dimension::DimensionType
#include <string>
#include <vector>
#include <memory> // for auto_ptr
#include <geos/inline.h>
namespace geos {
namespace geom {
class Coordinate;
class CoordinateArraySequence;
class CoordinateSequenceFilter;
}
}
namespace geos {
namespace geom { // geos::geom
/**
* \class LineString geom.h geos.h
* \brief Basic implementation of LineString.
*/
class GEOS_DLL LineString: public Geometry {
public:
friend class GeometryFactory;
/// A vector of const LineString pointers
typedef std::vector<const LineString *> ConstVect;
virtual ~LineString();
/**
* Creates and returns a full copy of this {@link LineString} object.
* (including all coordinates contained by it).
*
* @return a clone of this instance
*/
virtual Geometry *clone() const;
virtual CoordinateSequence* getCoordinates() const;
/// Returns a read-only pointer to internal CoordinateSequence
const CoordinateSequence* getCoordinatesRO() const;
virtual const Coordinate& getCoordinateN(int n) const;
/// Returns line dimension (1)
virtual Dimension::DimensionType getDimension() const;
/**
* \brief
* Returns Dimension::False for a closed LineString,
* 0 otherwise (LineString boundary is a MultiPoint)
*/
virtual int getBoundaryDimension() const;
/**
* \brief
* Returns a MultiPoint.
* Empty for closed LineString, a Point for each vertex otherwise.
*/
virtual Geometry* getBoundary() const;
virtual bool isEmpty() const;
virtual size_t getNumPoints() const;
virtual Point* getPointN(size_t n) const;
/// \brief
/// Return the start point of the LineString
/// or NULL if this is an EMPTY LineString.
///
virtual Point* getStartPoint() const;
/// \brief
/// Return the end point of the LineString
/// or NULL if this is an EMPTY LineString.
///
virtual Point* getEndPoint() const;
virtual bool isClosed() const;
virtual bool isRing() const;
virtual std::string getGeometryType() const;
virtual GeometryTypeId getGeometryTypeId() const;
virtual bool isCoordinate(Coordinate& pt) const;
virtual bool equalsExact(const Geometry *other, double tolerance=0)
const;
virtual void apply_rw(const CoordinateFilter *filter);
virtual void apply_ro(CoordinateFilter *filter) const;
virtual void apply_rw(GeometryFilter *filter);
virtual void apply_ro(GeometryFilter *filter) const;
virtual void apply_rw(GeometryComponentFilter *filter);
virtual void apply_ro(GeometryComponentFilter *filter) const;
void apply_rw(CoordinateSequenceFilter& filter);
void apply_ro(CoordinateSequenceFilter& filter) const;
/** \brief
* Normalizes a LineString.
*
* A normalized linestring
* has the first point which is not equal to it's reflected point
* less than the reflected point.
*/
virtual void normalize();
//was protected
virtual int compareToSameClass(const Geometry *ls) const;
virtual const Coordinate* getCoordinate() const;
virtual double getLength() const;
/**
* Creates a LineString whose coordinates are in the reverse
* order of this objects
*
* @return a LineString with coordinates in the reverse order
*/
Geometry* reverse() const;
protected:
LineString(const LineString &ls);
/// \brief
/// Constructs a LineString taking ownership the
/// given CoordinateSequence.
LineString(CoordinateSequence *pts, const GeometryFactory *newFactory);
/// Hopefully cleaner version of the above
LineString(CoordinateSequence::AutoPtr pts,
const GeometryFactory *newFactory);
Envelope::AutoPtr computeEnvelopeInternal() const;
CoordinateSequence::AutoPtr points;
private:
void validateConstruction();
};
struct GEOS_DLL LineStringLT {
bool operator()(const LineString *ls1, const LineString *ls2) const {
return ls1->compareTo(ls2)<0;
}
};
inline Geometry*
LineString::clone() const {
return new LineString(*this);
}
} // namespace geos::geom
} // namespace geos
//#ifdef GEOS_INLINE
//# include "geos/geom/LineString.inl"
//#endif
#endif // ndef GEOS_GEOS_LINESTRING_H
/**********************************************************************
* $Log$
* Revision 1.10 2006/06/12 10:49:43 strk
* unsigned int => size_t
*
* Revision 1.9 2006/05/04 15:49:39 strk
* updated all Geometry::getDimension() methods to return Dimension::DimensionType (closes bug#93)
*
* Revision 1.8 2006/04/28 10:55:39 strk
* Geometry constructors made protected, to ensure all constructions use GeometryFactory,
* which has been made friend of all Geometry derivates. getNumPoints() changed to return
* size_t.
*
* Revision 1.7 2006/04/11 11:16:25 strk
* Added LineString and LinearRing constructors by auto_ptr
*
* Revision 1.6 2006/04/10 18:15:09 strk
* Changed Geometry::envelope member to be of type auto_ptr<Envelope>.
* Changed computeEnvelopeInternal() signater to return auto_ptr<Envelope>
*
* Revision 1.5 2006/04/10 17:35:44 strk
* Changed LineString::points and Point::coordinates to be wrapped
* in an auto_ptr<>. This should close bugs #86 and #89
*
* Revision 1.4 2006/04/05 10:25:21 strk
* Fixed LineString constructor to ensure deletion of CoordinateSequence
* argument on exception throw
*
* Revision 1.3 2006/03/31 16:55:17 strk
* Added many assertions checking in LineString implementation.
* Changed ::getCoordinate() to return NULL on empty geom.
* Changed ::get{Start,End}Point() to return NULL on empty geom.
*
* Revision 1.2 2006/03/24 09:52:41 strk
* USE_INLINE => GEOS_INLINE
*
* Revision 1.1 2006/03/09 16:46:49 strk
* geos::geom namespace definition, first pass at headers split
*
**********************************************************************/
|