QGIS API Documentation  2.18.21-Las Palmas (9fba24a)
geomfunction.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 PAL_GEOM_FUNCTION
31 #define PAL_GEOM_FUNCTION
32 
33 #include "util.h"
34 #include "qgsgeos.h"
35 
36 namespace pal
37 {
43  class CORE_EXPORT GeomFunction
44  {
45  public:
46 
47  /*
48  * o(x2,y2)
49  * /
50  * cp > 0 /
51  * / cp < 0
52  * /
53  * /
54  * o (x1, y1)
55  */
56  static inline double cross_product( double x1, double y1, double x2, double y2, double x3, double y3 )
57  {
58  return ( x2 - x1 ) *( y3 - y1 ) - ( x3 - x1 ) *( y2 - y1 );
59  }
60 
61  static inline double dist_euc2d( double x1, double y1, double x2, double y2 )
62  {
63  return sqrt(( x2 - x1 ) *( x2 - x1 ) + ( y2 - y1 ) *( y2 - y1 ) );
64  }
65 
66  static inline double dist_euc2d_sq( double x1, double y1, double x2, double y2 )
67  {
68  return ( x2 - x1 ) *( x2 - x1 ) + ( y2 - y1 ) *( y2 - y1 );
69  }
70 
71  static void findLineCircleIntersection( double cx, double cy, double radius,
72  double x1, double y1, double x2, double y2,
73  double& xRes, double& yRes );
74 
84  static int convexHullId( int *id, const double* const x, const double* const y, int n, int *&cHull );
85 
89  static bool isSegIntersects( double x1, double y1, double x2, double y2, // 1st segment
90  double x3, double y3, double x4, double y4 ); // 2nd segment
91 
96  static bool computeLineIntersection( double x1, double y1, double x2, double y2, // 1st line (segment)
97  double x3, double y3, double x4, double y4, // 2nd line segment
98  double *x, double *y );
99 
101  static int reorderPolygon( int nbPoints, double *x, double *y );
102 
112  static bool containsCandidate( const GEOSPreparedGeometry* geom, double x, double y, double width, double height, double alpha );
113 
114  };
115 } //namespace
116 
117 #endif
static double cross_product(double x1, double y1, double x2, double y2, double x3, double y3)
Definition: geomfunction.h:56
static double dist_euc2d(double x1, double y1, double x2, double y2)
Definition: geomfunction.h:61
static double dist_euc2d_sq(double x1, double y1, double x2, double y2)
Definition: geomfunction.h:66