18 #ifndef QGSLINESEGMENT_H 19 #define QGSLINESEGMENT_H 21 #include "qgis_core.h" 60 return std::sqrt( ( mStart.x() - mEnd.x() ) * ( mStart.x() - mEnd.x() ) + ( mStart.y() - mEnd.y() ) * ( mStart.y() - mEnd.y() ) );
69 return ( mStart.x() - mEnd.x() ) * ( mStart.x() - mEnd.x() ) + ( mStart.y() - mEnd.y() ) * ( mStart.y() - mEnd.y() );
211 int pointLeftOfLine(
const QgsPointXY &point )
const;
218 std::swap( mStart, mEnd );
224 return mStart == other.mStart && mEnd == other.mEnd;
230 return mStart != other.mStart || mEnd != other.mEnd;
240 #endif // QGSLINESEGMENT_H QgsLineSegment2D(const QgsPointXY &start, const QgsPointXY &end)
Constructor for a QgsLineSegment2D from the specified start point to the end point.
void setStartY(double y)
Sets the segment's start y coordinate.
A class to represent a 2D point.
double endY() const
Returns the segment's end y-coordinate.
void setEndY(double y)
Sets the segment's end y coordinate.
void setEndX(double x)
Sets the segment's end x coordinate.
void reverse()
Reverses the line segment, so that the start and end points are flipped.
bool operator==(const QgsLineSegment2D &other) const
Equality operator.
QgsPointXY end() const
Returns the segment's end point.
void setEnd(const QgsPointXY &end)
Sets the segment's end point.
double startX() const
Returns the segment's start x-coordinate.
QgsLineSegment2D(double x1, double y1, double x2, double y2)
Constructor for a QgsLineSegment2D from the point (x1, y2) to (x2, y2).
double length() const
Returns the length of the segment.
Represents a single 2D line segment, consisting of a 2D start and end vertex only.
void setStartX(double x)
Sets the segment's start x coordinate.
double endX() const
Returns the segment's end x-coordinate.
Line string geometry type, with support for z-dimension and m-values.
void setStart(const QgsPointXY &start)
Sets the segment's start point.
bool operator!=(const QgsLineSegment2D &other) const
Inequality operator.
double startY() const
Returns the segment's start y-coordinate.
double lengthSquared() const
Returns the squared length of the segment.
QgsPointXY start() const
Returns the segment's start point.