QGIS API Documentation  2.8.2-Wien
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
Public Member Functions | Friends | List of all members
QgsPoint Class Reference

A class to represent a point. More...

#include <qgspoint.h>

Public Member Functions

 QgsPoint ()
 Default constructor.
 QgsPoint (const QgsPoint &p)
 QgsPoint (double x, double y)
 QgsPoint (const QPointF &point)
 QgsPoint (const QPoint &point)
 ~QgsPoint ()
double azimuth (const QgsPoint &other)
 Calculates azimuth between this point and other one (clockwise in degree, starting from north)
void multiply (const double &scalar)
 Multiply x and y by the given value.
int onSegment (const QgsPoint &a, const QgsPoint &b) const
 Test if this point is on the segment defined by points a, b.
bool operator!= (const QgsPoint &other) const
 Inequality operator.
QgsPoint operator+ (const QgsVector &v) const
QgsPointoperator+= (const QgsVector &v)
QgsVector operator- (QgsPoint p) const
QgsPoint operator- (const QgsVector &v) const
QgsPointoperator-= (const QgsVector &v)
QgsPointoperator= (const QgsPoint &other)
 Assignment.
bool operator== (const QgsPoint &other)
 equality operator
void set (double x, double y)
void setX (double x)
void setY (double y)
double sqrDist (double x, double y) const
 Returns the squared distance between this point and x,y.
double sqrDist (const QgsPoint &other) const
 Returns the squared distance between this and other point.
double sqrDistToSegment (double x1, double y1, double x2, double y2, QgsPoint &minDistPoint, double epsilon=DEFAULT_SEGMENT_EPSILON) const
 Returns the minimum distance between this point and a segment.
QString toDegreesMinutes (int thePrecision, const bool useSuffix=true, const bool padded=false) const
 Return a string representation as degrees minutes.
QString toDegreesMinutesSeconds (int thePrecision, const bool useSuffix=true, const bool padded=false) const
 Return a string representation as degrees minutes seconds.
QPointF toQPointF () const
 Converts a point to a QPointF.
QString toString () const
 String representation of the point (x,y)
QString toString (int thePrecision) const
 As above but with precision for string representation of a point.
QString wellKnownText () const
double x () const
double y () const

Friends

uint qHash (const QgsPoint &pnt)

Detailed Description

A class to represent a point.

Currently no Z axis / 2.5D support is implemented.

Definition at line 63 of file qgspoint.h.

Constructor & Destructor Documentation

QgsPoint::QgsPoint ( )
inline

Default constructor.

Definition at line 67 of file qgspoint.h.

QgsPoint::QgsPoint ( const QgsPoint p)

Create a point from another point

Definition at line 115 of file qgspoint.cpp.

QgsPoint::QgsPoint ( double  x,
double  y 
)
inline

Create a point from x,y coordinates

Parameters
xx coordinate
yy coordinate

Definition at line 77 of file qgspoint.h.

QgsPoint::QgsPoint ( const QPointF &  point)
inline

Create a point from a QPointF

Parameters
pointQPointF source
Note
added in QGIS 2.7

Definition at line 85 of file qgspoint.h.

QgsPoint::QgsPoint ( const QPoint &  point)
inline

Create a point from a QPoint

Parameters
pointQPoint source
Note
added in QGIS 2.7

Definition at line 93 of file qgspoint.h.

QgsPoint::~QgsPoint ( )
inline

Definition at line 97 of file qgspoint.h.

Member Function Documentation

double QgsPoint::azimuth ( const QgsPoint other)

Calculates azimuth between this point and other one (clockwise in degree, starting from north)

Definition at line 343 of file qgspoint.cpp.

void QgsPoint::multiply ( const double &  scalar)

Multiply x and y by the given value.

Definition at line 378 of file qgspoint.cpp.

int QgsPoint::onSegment ( const QgsPoint a,
const QgsPoint b 
) const

Test if this point is on the segment defined by points a, b.

Returns
0 if this point is not on the open ray through a and b, 1 if point is on open ray a, 2 if point is within line segment, 3 if point is on open ray b.

Definition at line 384 of file qgspoint.cpp.

bool QgsPoint::operator!= ( const QgsPoint other) const

Inequality operator.

Definition at line 359 of file qgspoint.cpp.

QgsPoint QgsPoint::operator+ ( const QgsVector v) const
inline

Definition at line 213 of file qgspoint.h.

QgsPoint& QgsPoint::operator+= ( const QgsVector v)
inline

Definition at line 211 of file qgspoint.h.

QgsVector QgsPoint::operator- ( QgsPoint  p) const
inline

Definition at line 210 of file qgspoint.h.

QgsPoint QgsPoint::operator- ( const QgsVector v) const
inline

Definition at line 214 of file qgspoint.h.

QgsPoint& QgsPoint::operator-= ( const QgsVector v)
inline

Definition at line 212 of file qgspoint.h.

QgsPoint & QgsPoint::operator= ( const QgsPoint other)

Assignment.

Definition at line 367 of file qgspoint.cpp.

bool QgsPoint::operator== ( const QgsPoint other)

equality operator

Definition at line 351 of file qgspoint.cpp.

void QgsPoint::set ( double  x,
double  y 
)
inline

Sets the x and y value of the point

Definition at line 117 of file qgspoint.h.

void QgsPoint::setX ( double  x)
inline

Sets the x value of the point

Parameters
xx coordinate

Definition at line 103 of file qgspoint.h.

void QgsPoint::setY ( double  y)
inline

Sets the y value of the point

Parameters
yy coordinate

Definition at line 111 of file qgspoint.h.

double QgsPoint::sqrDist ( double  x,
double  y 
) const

Returns the squared distance between this point and x,y.

Definition at line 333 of file qgspoint.cpp.

double QgsPoint::sqrDist ( const QgsPoint other) const

Returns the squared distance between this and other point.

Definition at line 338 of file qgspoint.cpp.

double QgsPoint::sqrDistToSegment ( double  x1,
double  y1,
double  x2,
double  y2,
QgsPoint minDistPoint,
double  epsilon = DEFAULT_SEGMENT_EPSILON 
) const

Returns the minimum distance between this point and a segment.

Definition at line 414 of file qgspoint.cpp.

QString QgsPoint::toDegreesMinutes ( int  thePrecision,
const bool  useSuffix = true,
const bool  padded = false 
) const

Return a string representation as degrees minutes.

Its up to the calling function to ensure that this point can be meaningfully represented in this form.

Parameters
thePrecisionnumber of decimal points to use for minutes
useSuffixset to true to include a direction suffix (eg 'N'), set to false to use a "-" prefix for west and south coordinates
paddedset to true to force minutes to use two decimals, eg, '05' instead of '5'.

Definition at line 244 of file qgspoint.cpp.

QString QgsPoint::toDegreesMinutesSeconds ( int  thePrecision,
const bool  useSuffix = true,
const bool  padded = false 
) const

Return a string representation as degrees minutes seconds.

Its up to the calling function to ensure that this point can be meaningfully represented in this form.

Parameters
thePrecisionnumber of decimal points to use for seconds
useSuffixset to true to include a direction suffix (eg 'N'), set to false to use a "-" prefix for west and south coordinates
paddedset to true to force minutes and seconds to use two decimals, eg, '05' instead of '5'.

Definition at line 142 of file qgspoint.cpp.

QPointF QgsPoint::toQPointF ( ) const

Converts a point to a QPointF.

Returns
QPointF with same x and y values
Note
added in QGIS 2.7

Definition at line 121 of file qgspoint.cpp.

QString QgsPoint::toString ( ) const

String representation of the point (x,y)

Definition at line 126 of file qgspoint.cpp.

QString QgsPoint::toString ( int  thePrecision) const

As above but with precision for string representation of a point.

Definition at line 135 of file qgspoint.cpp.

QString QgsPoint::wellKnownText ( ) const

Return the well known text representation for the point. The wkt is created without an SRID.

Returns
Well known text in the form POINT(x y)

Definition at line 328 of file qgspoint.cpp.

double QgsPoint::x ( ) const
inline

Get the x value of the point

Returns
x coordinate

Definition at line 126 of file qgspoint.h.

double QgsPoint::y ( ) const
inline

Get the y value of the point

Returns
y coordinate

Definition at line 134 of file qgspoint.h.

Friends And Related Function Documentation

uint qHash ( const QgsPoint pnt)
friend

Definition at line 244 of file qgspoint.h.


The documentation for this class was generated from the following files: