~ubuntu-branches/ubuntu/maverick/qgis/maverick

« back to all changes in this revision

Viewing changes to src/core/spatialindex/include/Point.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_point_h
 
23
#define __tools_geometry_point_h
 
24
 
 
25
namespace Tools
 
26
{
 
27
  namespace Geometry
 
28
  {
 
29
    class Point : public IObject, public virtual IShape
 
30
    {
 
31
      public:
 
32
        Point();
 
33
        Point( const double* pCoords, unsigned long dimension );
 
34
        Point( const Point& p );
 
35
        virtual ~Point();
 
36
 
 
37
        virtual Point& operator=( const Point& p );
 
38
        virtual bool operator==( const Point& p ) const;
 
39
 
 
40
        //
 
41
        // IObject interface
 
42
        //
 
43
        virtual Point* clone();
 
44
 
 
45
        //
 
46
        // ISerializable interface
 
47
        //
 
48
        virtual unsigned long getByteArraySize();
 
49
        virtual void loadFromByteArray( const byte* data );
 
50
        virtual void storeToByteArray( byte** data, unsigned long& length );
 
51
 
 
52
        //
 
53
        // IShape interface
 
54
        //
 
55
        virtual bool intersectsShape( const IShape& in ) const;
 
56
        virtual bool containsShape( const IShape& in ) const;
 
57
        virtual bool touchesShape( const IShape& in ) const;
 
58
        virtual void getCenter( Point& out ) const;
 
59
        virtual unsigned long getDimension() const;
 
60
        virtual void getMBR( Region& out ) const;
 
61
        virtual double getArea() const;
 
62
        virtual double getMinimumDistance( const IShape& in ) const;
 
63
 
 
64
        virtual double getMinimumDistance( const Point& p ) const;
 
65
 
 
66
        virtual double getCoordinate( unsigned long index ) const;
 
67
 
 
68
        virtual void makeInfinite( unsigned long dimension );
 
69
        virtual void makeDimension( unsigned long dimension );
 
70
 
 
71
      public:
 
72
        unsigned long m_dimension;
 
73
        double* m_pCoords;
 
74
 
 
75
        friend class Region;
 
76
        friend std::ostream& operator<<( std::ostream& os, const Point& pt );
 
77
    }; // Point
 
78
 
 
79
    std::ostream& operator<<( std::ostream& os, const Point& pt );
 
80
  }
 
81
}
 
82
 
 
83
#endif /*__tools_geometry_point_h*/