QGIS API Documentation  3.18.1-Zürich (202f1bf7e5)
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
pointset.h
Go to the documentation of this file.
1 /*
2  * libpal - Automated Placement of Labels Library
3  *
4  * Copyright (C) 2008 Maxence Laurent, MIS-TIC, HEIG-VD
5  * University of Applied Sciences, Western Switzerland
6  * http://www.hes-so.ch
7  *
8  * Contact:
9  * maxence.laurent <at> heig-vd <dot> ch
10  * or
11  * eric.taillard <at> heig-vd <dot> ch
12  *
13  * This file is part of libpal.
14  *
15  * libpal is free software: you can redistribute it and/or modify
16  * it under the terms of the GNU General Public License as published by
17  * the Free Software Foundation, either version 3 of the License, or
18  * (at your option) any later version.
19  *
20  * libpal is distributed in the hope that it will be useful,
21  * but WITHOUT ANY WARRANTY; without even the implied warranty of
22  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23  * GNU General Public License for more details.
24  *
25  * You should have received a copy of the GNU General Public License
26  * along with libpal. If not, see <http://www.gnu.org/licenses/>.
27  *
28  */
29 
30 #ifndef POINTSET_H
31 #define POINTSET_H
32 
33 #define SIP_NO_FILE
34 
35 
36 #include <cfloat>
37 #include <cmath>
38 #include <QLinkedList>
39 #include <geos_c.h>
40 #include <memory>
41 #include <vector>
42 
43 #include "qgis_core.h"
44 #include "qgsrectangle.h"
45 
46 namespace pal
47 {
48 
49  class Pal;
50  class Projection;
51  class LabelPosition;
52 
53  class PointSet;
54 
59  {
60  double x[4];
61  double y[4];
62 
63  double alpha;
64 
65  double width;
66  double length;
67  };
68 
75  class CORE_EXPORT PointSet
76  {
77  friend class FeaturePart;
78  friend class LabelPosition;
79  friend class CostCalculator;
80  friend class PolygonCostCalculator;
81  friend class Layer;
82 
83  public:
84  PointSet();
85  PointSet( int nbPoints, double *x, double *y );
86  virtual ~PointSet();
87 
91  std::unique_ptr< PointSet > extractShape( int nbPtSh, int imin, int imax, int fps, int fpe, double fptx, double fpty );
92 
96  std::unique_ptr< PointSet > clone() const;
97 
104  bool containsPoint( double x, double y ) const;
105 
115  bool containsLabelCandidate( double x, double y, double width, double height, double alpha = 0 ) const;
116 
120  OrientedConvexHullBoundingBox computeConvexHullOrientedBoundingBox( bool &ok );
121 
125  static void splitPolygons( QLinkedList<PointSet *> &inputShapes,
126  QLinkedList<PointSet *> &outputShapes,
127  double xrm, double yrm );
128 
137  void extendLineByDistance( double startDistance, double endDistance, double smoothDistance );
138 
148  double minDistanceToPoint( double px, double py, double *rx = nullptr, double *ry = nullptr ) const;
149 
150  void getCentroid( double &px, double &py, bool forceInside = false ) const;
151 
152  int getGeosType() const { return type; }
153 
158  {
159  return QgsRectangle( xmin, ymin, xmax, ymax );
160  }
161 
166  bool boundingBoxIntersects( const PointSet *other ) const;
167 
169  PointSet *getHoleOf() const { return holeOf; }
170 
171  int getNumPoints() const { return nbPoints; }
172 
181  void getPointByDistance( double *d, double *ad, double dl, double *px, double *py );
182 
186  const GEOSGeometry *geos() const;
187 
191  double length() const;
192 
196  double area() const;
197 
201  bool isClosed() const;
202 
203  int nbPoints;
204  std::vector< double > x;
205  std::vector< double > y; // points order is counterclockwise
206 
207  protected:
208  mutable GEOSGeometry *mGeos = nullptr;
209  mutable bool mOwnsGeom = false;
210 
211  int *cHull = nullptr;
212  int cHullSize = 0;
213 
214  int type;
215 
216  PointSet *holeOf = nullptr;
217  PointSet *parent = nullptr;
218 
219  mutable double mArea = -1;
220  mutable double mLength = -1;
221 
222 
223  PointSet( double x, double y );
224 
225  PointSet( const PointSet &ps );
226 
227  void deleteCoords();
228  void createGeosGeom() const;
229  const GEOSPreparedGeometry *preparedGeom() const;
230  void invalidateGeos();
231 
232  double xmin = std::numeric_limits<double>::max();
233  double xmax = std::numeric_limits<double>::lowest();
234  double ymin = std::numeric_limits<double>::max();
235  double ymax = std::numeric_limits<double>::lowest();
236 
237  private:
238 
239  mutable const GEOSPreparedGeometry *mGeosPreparedBoundary = nullptr;
240  mutable const GEOSPreparedGeometry *mPreparedGeom = nullptr;
241 
242  PointSet &operator= ( const PointSet & ) = delete;
243 
244  };
245 
246 } // namespace pal
247 
248 #endif
249 
A rectangle specified with double values.
Definition: qgsrectangle.h:42
Calculates label candidate costs considering different factors.
Main class to handle feature.
Definition: feature.h:97
LabelPosition is a candidate feature label position.
Definition: labelposition.h:56
A set of features which influence the labeling process.
Definition: layer.h:62
The underlying raw pal geometry class.
Definition: pointset.h:76
std::vector< double > y
Definition: pointset.h:205
QgsRectangle boundingBox() const
Returns the point set bounding box.
Definition: pointset.h:157
std::vector< double > x
Definition: pointset.h:204
int getGeosType() const
Definition: pointset.h:152
PointSet * getHoleOf() const
Returns nullptr if this isn't a hole. Otherwise returns pointer to parent pointset.
Definition: pointset.h:169
int getNumPoints() const
Definition: pointset.h:171
Contains geos related utilities and functions.
Definition: qgsgeos.h:42
Represents the minimum area, oriented bounding box surrounding a convex hull.
Definition: pointset.h:59