QGIS API Documentation
3.20.0-Odense (decaadbb31)
|
The underlying raw pal geometry class. More...
#include <pointset.h>
Public Member Functions | |
PointSet () | |
PointSet (int nbPoints, double *x, double *y) | |
virtual | ~PointSet () |
double | area () const |
Returns area of polygon geometry. More... | |
QgsRectangle | boundingBox () const |
Returns the point set bounding box. More... | |
bool | boundingBoxIntersects (const PointSet *other) const |
Returns true if the bounding box of this pointset intersects the bounding box of another pointset. More... | |
std::unique_ptr< PointSet > | clone () const |
Returns a copy of the point set. More... | |
OrientedConvexHullBoundingBox | computeConvexHullOrientedBoundingBox (bool &ok) |
Computes an oriented bounding box for the shape's convex hull. More... | |
bool | containsLabelCandidate (double x, double y, double width, double height, double alpha=0) const |
Tests whether a possible label candidate will fit completely within the shape. More... | |
bool | containsPoint (double x, double y) const |
Tests whether point set contains a specified point. More... | |
std::tuple< std::vector< double >, double > | edgeDistances () const |
Returns a vector of edge distances as well as its total length. More... | |
void | extendLineByDistance (double startDistance, double endDistance, double smoothDistance) |
Extends linestrings by the specified amount at the start and end of the line, by extending the existing lines following the same direction as the original line start or end. More... | |
std::unique_ptr< PointSet > | extractShape (int nbPtSh, int imin, int imax, int fps, int fpe, double fptx, double fpty) |
Does... More... | |
const GEOSGeometry * | geos () const |
Returns the point set's GEOS geometry. More... | |
void | getCentroid (double &px, double &py, bool forceInside=false) const |
int | getGeosType () const |
PointSet * | getHoleOf () const |
Returns nullptr if this isn't a hole. Otherwise returns pointer to parent pointset. More... | |
int | getNumPoints () const |
void | getPointByDistance (double *d, double *ad, double dl, double *px, double *py) |
Gets a point a set distance along a line geometry. More... | |
bool | isClosed () const |
Returns true if pointset is closed. More... | |
double | length () const |
Returns length of line geometry. More... | |
double | minDistanceToPoint (double px, double py, double *rx=nullptr, double *ry=nullptr) const |
Returns the squared minimum distance between the point set geometry and the point (px,py) Optionally, the nearest point is stored in (rx,ry). More... | |
void | offsetCurveByDistance (double distance) |
Offsets linestrings by the specified distance. More... | |
QString | toWkt () const |
Returns a WKT representation of the point set. More... | |
Static Public Member Functions | |
static QLinkedList< PointSet * > | splitPolygons (PointSet *inputShape, double labelWidth, double labelHeight) |
Split a polygon using some random logic into some other polygons. More... | |
Public Attributes | |
int | nbPoints |
std::vector< double > | x |
std::vector< double > | y |
Protected Member Functions | |
PointSet (const PointSet &ps) | |
PointSet (double x, double y) | |
void | createGeosGeom () const |
void | deleteCoords () |
void | invalidateGeos () |
const GEOSPreparedGeometry * | preparedGeom () const |
Protected Attributes | |
std::vector< int > | convexHull |
PointSet * | holeOf = nullptr |
double | mArea = -1 |
GEOSGeometry * | mGeos = nullptr |
double | mLength = -1 |
bool | mOwnsGeom = false |
PointSet * | parent = nullptr |
int | type |
double | xmax = std::numeric_limits<double>::lowest() |
double | xmin = std::numeric_limits<double>::max() |
double | ymax = std::numeric_limits<double>::lowest() |
double | ymin = std::numeric_limits<double>::max() |
Friends | |
class | CostCalculator |
class | FeaturePart |
class | LabelPosition |
class | Layer |
class | PolygonCostCalculator |
The underlying raw pal geometry class.
Definition at line 75 of file pointset.h.
PointSet::PointSet | ( | ) |
Definition at line 41 of file pointset.cpp.
PointSet::PointSet | ( | int | nbPoints, |
double * | x, | ||
double * | y | ||
) |
Definition at line 47 of file pointset.cpp.
|
virtual |
Definition at line 197 of file pointset.cpp.
|
protected |
Definition at line 63 of file pointset.cpp.
|
protected |
Definition at line 77 of file pointset.cpp.
double PointSet::area | ( | ) | const |
Returns area of polygon geometry.
Definition at line 1071 of file pointset.cpp.
|
inline |
Returns the point set bounding box.
Definition at line 162 of file pointset.h.
bool PointSet::boundingBoxIntersects | ( | const PointSet * | other | ) | const |
Returns true
if the bounding box of this pointset intersects the bounding box of another pointset.
Definition at line 987 of file pointset.cpp.
std::unique_ptr< PointSet > PointSet::clone | ( | ) | const |
Returns a copy of the point set.
Definition at line 261 of file pointset.cpp.
OrientedConvexHullBoundingBox PointSet::computeConvexHullOrientedBoundingBox | ( | bool & | ok | ) |
Computes an oriented bounding box for the shape's convex hull.
Definition at line 709 of file pointset.cpp.
bool PointSet::containsLabelCandidate | ( | double | x, |
double | y, | ||
double | width, | ||
double | height, | ||
double | alpha = 0 |
||
) | const |
Tests whether a possible label candidate will fit completely within the shape.
x | x-coordinate of label candidate |
y | y-coordinate of label candidate |
width | label width |
height | label height |
alpha | label angle |
true
if point set completely contains candidate label Definition at line 292 of file pointset.cpp.
bool PointSet::containsPoint | ( | double | x, |
double | y | ||
) | const |
Tests whether point set contains a specified point.
x | x-coordinate of point |
y | y-coordinate of point |
true
if point set contains a specified point Definition at line 266 of file pointset.cpp.
|
protected |
Definition at line 100 of file pointset.cpp.
|
protected |
Definition at line 228 of file pointset.cpp.
std::tuple< std::vector< double >, double > PointSet::edgeDistances | ( | ) | const |
Returns a vector of edge distances as well as its total length.
Definition at line 1132 of file pointset.cpp.
void PointSet::extendLineByDistance | ( | double | startDistance, |
double | endDistance, | ||
double | smoothDistance | ||
) |
Extends linestrings by the specified amount at the start and end of the line, by extending the existing lines following the same direction as the original line start or end.
The smoothDistance argument specifies the distance over which to smooth the direction of the line at its start and end points.
Definition at line 622 of file pointset.cpp.
std::unique_ptr< PointSet > PointSet::extractShape | ( | int | nbPtSh, |
int | imin, | ||
int | imax, | ||
int | fps, | ||
int | fpe, | ||
double | fptx, | ||
double | fpty | ||
) |
const GEOSGeometry * PointSet::geos | ( | ) | const |
Returns the point set's GEOS geometry.
Definition at line 1037 of file pointset.cpp.
void PointSet::getCentroid | ( | double & | px, |
double & | py, | ||
bool | forceInside = false |
||
) | const |
Definition at line 930 of file pointset.cpp.
|
inline |
Definition at line 157 of file pointset.h.
|
inline |
Returns nullptr
if this isn't a hole. Otherwise returns pointer to parent pointset.
Definition at line 174 of file pointset.h.
|
inline |
Definition at line 176 of file pointset.h.
void PointSet::getPointByDistance | ( | double * | d, |
double * | ad, | ||
double | dl, | ||
double * | px, | ||
double * | py | ||
) |
Gets a point a set distance along a line geometry.
d | array of distances between points |
ad | cumulative total distance from pt0 to each point (ad0 = pt0->pt0) |
dl | distance to traverse along line |
px | final x coord on line |
py | final y coord on line |
Definition at line 998 of file pointset.cpp.
|
protected |
Definition at line 162 of file pointset.cpp.
bool PointSet::isClosed | ( | ) | const |
Returns true
if pointset is closed.
Definition at line 1098 of file pointset.cpp.
double PointSet::length | ( | ) | const |
Returns length of line geometry.
Definition at line 1045 of file pointset.cpp.
double PointSet::minDistanceToPoint | ( | double | px, |
double | py, | ||
double * | rx = nullptr , |
||
double * | ry = nullptr |
||
) | const |
Returns the squared minimum distance between the point set geometry and the point (px,py) Optionally, the nearest point is stored in (rx,ry).
px | x coordinate of the point |
py | y coordinate of the points |
rx | pointer to x coorinates of the nearest point (can be NULL) |
ry | pointer to y coorinates of the nearest point (can be NULL) |
Definition at line 851 of file pointset.cpp.
void PointSet::offsetCurveByDistance | ( | double | distance | ) |
Offsets linestrings by the specified distance.
Definition at line 548 of file pointset.cpp.
|
protected |
Definition at line 150 of file pointset.cpp.
|
static |
Split a polygon using some random logic into some other polygons.
Definition at line 297 of file pointset.cpp.
QString PointSet::toWkt | ( | ) | const |
Returns a WKT representation of the point set.
Definition at line 1103 of file pointset.cpp.
|
friend |
Definition at line 79 of file pointset.h.
|
friend |
Definition at line 77 of file pointset.h.
|
friend |
Definition at line 78 of file pointset.h.
|
friend |
Definition at line 81 of file pointset.h.
|
friend |
Definition at line 80 of file pointset.h.
|
protected |
Definition at line 226 of file pointset.h.
|
protected |
Definition at line 230 of file pointset.h.
|
mutableprotected |
Definition at line 233 of file pointset.h.
|
mutableprotected |
Definition at line 223 of file pointset.h.
|
mutableprotected |
Definition at line 234 of file pointset.h.
|
mutableprotected |
Definition at line 224 of file pointset.h.
int pal::PointSet::nbPoints |
Definition at line 218 of file pointset.h.
|
protected |
Definition at line 231 of file pointset.h.
|
protected |
Definition at line 228 of file pointset.h.
std::vector< double > pal::PointSet::x |
Definition at line 219 of file pointset.h.
|
protected |
Definition at line 248 of file pointset.h.
|
protected |
Definition at line 247 of file pointset.h.
std::vector< double > pal::PointSet::y |
Definition at line 220 of file pointset.h.
|
protected |
Definition at line 250 of file pointset.h.
|
protected |
Definition at line 249 of file pointset.h.