~ubuntu-branches/ubuntu/wily/qgis/wily

« back to all changes in this revision

Viewing changes to src/core/spatialindex/include/LineSegment.h

  • Committer: Bazaar Package Importer
  • Author(s): Johan Van de Wauw
  • Date: 2010-07-11 20:23:24 UTC
  • mfrom: (3.1.4 squeeze)
  • Revision ID: james.westby@ubuntu.com-20100711202324-5ktghxa7hracohmr
Tags: 1.4.0+12730-3ubuntu1
* Merge from Debian unstable (LP: #540941).
* Fix compilation issues with QT 4.7
* Add build-depends on libqt4-webkit-dev 

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
// Tools Library
 
2
//
 
3
// Copyright (C) 2004  Navel Ltd.
 
4
//
 
5
// This library is free software; you can redistribute it and/or
 
6
// modify it under the terms of the GNU Lesser General Public
 
7
// License as published by the Free Software Foundation; either
 
8
// version 2.1 of the License, or (at your option) any later version.
 
9
//
 
10
// This library is distributed in the hope that it will be useful,
 
11
// but WITHOUT ANY WARRANTY; without even the implied warranty of
 
12
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
 
13
// Lesser General Public License for more details.
 
14
//
 
15
// You should have received a copy of the GNU Lesser General Public
 
16
// License along with this library; if not, write to the Free Software
 
17
// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 
18
//
 
19
//  Email:
 
20
//    mhadji@gmail.com
 
21
 
 
22
#ifndef __tools_geometry_linesegment_h
 
23
#define __tools_geometry_linesegment_h
 
24
 
 
25
namespace Tools
 
26
{
 
27
  namespace Geometry
 
28
  {
 
29
    class LineSegment : public IObject, public virtual IShape
 
30
    {
 
31
      public:
 
32
        LineSegment();
 
33
        LineSegment( const double* startPoint, const double* endPoint, unsigned long dimension );
 
34
        LineSegment( const Point& startPoint, const Point& endPoint );
 
35
        LineSegment( const LineSegment& l );
 
36
        virtual ~LineSegment();
 
37
 
 
38
        virtual LineSegment& operator=( const LineSegment& p );
 
39
        virtual bool operator==( const LineSegment& p ) const;
 
40
 
 
41
        //
 
42
        // IObject interface
 
43
        //
 
44
        virtual LineSegment* clone();
 
45
 
 
46
        //
 
47
        // ISerializable interface
 
48
        //
 
49
        virtual unsigned long getByteArraySize();
 
50
        virtual void loadFromByteArray( const byte* data );
 
51
        virtual void storeToByteArray( byte** data, unsigned long& length );
 
52
 
 
53
        //
 
54
        // IShape interface
 
55
        //
 
56
        virtual bool intersectsShape( const IShape& in ) const;
 
57
        virtual bool containsShape( const IShape& in ) const;
 
58
        virtual bool touchesShape( const IShape& in ) const;
 
59
        virtual void getCenter( Point& out ) const;
 
60
        virtual unsigned long getDimension() const;
 
61
        virtual void getMBR( Region& out ) const;
 
62
        virtual double getArea() const;
 
63
        virtual double getMinimumDistance( const IShape& in ) const;
 
64
 
 
65
        virtual double getMinimumDistance( const Point& p ) const;
 
66
        //virtual double getMinimumDistance(const Region& r) const;
 
67
        virtual double getRelativeMinimumDistance( const Point& p ) const;
 
68
        virtual double getRelativeMaximumDistance( const Region& r ) const;
 
69
        virtual double getAngleOfPerpendicularRay();
 
70
 
 
71
        virtual void makeInfinite( unsigned long dimension );
 
72
        virtual void makeDimension( unsigned long dimension );
 
73
 
 
74
      public:
 
75
        unsigned long m_dimension;
 
76
        double* m_pStartPoint;
 
77
        double* m_pEndPoint;
 
78
 
 
79
        friend class Region;
 
80
        friend class Point;
 
81
        friend std::ostream& operator<<( std::ostream& os, const LineSegment& pt );
 
82
    }; // Point
 
83
 
 
84
    std::ostream& operator<<( std::ostream& os, const LineSegment& pt );
 
85
  }
 
86
}
 
87
 
 
88
#endif /*__tools_geometry_linesegment_h*/