QLineF Class | Qt Core 5.15.18 (original) (raw)

The QLineF class provides a two-dimensional vector using floating point precision. More...

Member Function Documentation

QLineF::QLineF(const QLine &line)

Construct a QLineF object from the given integer-based line.

See also toLine().

QLineF::QLineF(qreal x1, qreal y1, qreal x2, qreal y2)

Constructs a line object that represents the line between (x1, y1) and (x2, y2).

QLineF::QLineF(const QPointF &p1, const QPointF &p2)

Constructs a line object that represents the line between p1 and p2.

QLineF::QLineF()

Constructs a null line.

QPointF QLineF::p1() const

Returns the line's start point.

See also setP1(), x1(), y1(), and p2().

QPointF QLineF::p2() const

Returns the line's end point.

See also setP2(), x2(), y2(), and p1().

qreal QLineF::x1() const

Returns the x-coordinate of the line's start point.

See also p1().

qreal QLineF::x2() const

Returns the x-coordinate of the line's end point.

See also p2().

qreal QLineF::y1() const

Returns the y-coordinate of the line's start point.

See also p1().

qreal QLineF::y2() const

Returns the y-coordinate of the line's end point.

See also p2().

qreal QLineF::angle() const

Returns the angle of the line in degrees.

The return value will be in the range of values from 0.0 up to but not including 360.0. The angles are measured counter-clockwise from a point on the x-axis to the right of the origin (x > 0).

This function was introduced in Qt 4.4.

See also setAngle().

qreal QLineF::angleTo(const QLineF &line) const

Returns the angle (in degrees) from this line to the given line, taking the direction of the lines into account. If the lines do not intersect within their range, it is the intersection point of the extended lines that serves as origin (see QLineF::UnboundedIntersection).

The returned value represents the number of degrees you need to add to this line to make it have the same angle as the given line, going counter-clockwise.

This function was introduced in Qt 4.4.

See also intersect().

QPointF QLineF::center() const

Returns the center point of this line. This is equivalent to 0.5 * p1() + 0.5 * p2().

This function was introduced in Qt 5.8.

qreal QLineF::dx() const

Returns the horizontal component of the line's vector.

See also dy() and pointAt().

qreal QLineF::dy() const

Returns the vertical component of the line's vector.

See also dx() and pointAt().

[static] QLineF QLineF::fromPolar(qreal length, qreal angle)

Returns a QLineF with the given length and angle.

The first point of the line will be on the origin.

Positive values for the angles mean counter-clockwise while negative values mean the clockwise direction. Zero degrees is at the 3 o'clock position.

This function was introduced in Qt 4.4.

QLineF::IntersectionType QLineF::intersects(const QLineF &line, QPointF *intersectionPoint) const

Returns a value indicating whether or not this line intersects with the given line.

The actual intersection point is extracted to intersectionPoint (if the pointer is valid). If the lines are parallel, the intersection point is undefined.

This function was introduced in Qt 5.14.

bool QLineF::isNull() const

Returns true if the line does not have distinct start and end points; otherwise returns false. The start and end points are considered distinct if qFuzzyCompare() can distinguish them in at least one coordinate.

Note: Due to the use of fuzzy comparison, isNull() may return true for lines whose length() is not zero.

See also qFuzzyCompare() and length().

qreal QLineF::length() const

Returns the length of the line.

See also setLength() and isNull().

QLineF QLineF::normalVector() const

Returns a line that is perpendicular to this line with the same starting point and length.

See also unitVector().

QPointF QLineF::pointAt(qreal t) const

Returns the point at the parameterized position specified by t. The function returns the line's start point if t = 0, and its end point if t = 1.

See also dx() and dy().

void QLineF::setP1(const QPointF &p1)

Sets the starting point of this line to p1.

This function was introduced in Qt 4.4.

See also setP2() and p1().

void QLineF::setP2(const QPointF &p2)

Sets the end point of this line to p2.

This function was introduced in Qt 4.4.

See also setP1() and p2().

void QLineF::setAngle(qreal angle)

Sets the angle of the line to the given angle (in degrees). This will change the position of the second point of the line such that the line has the given angle.

Positive values for the angles mean counter-clockwise while negative values mean the clockwise direction. Zero degrees is at the 3 o'clock position.

This function was introduced in Qt 4.4.

See also angle().

void QLineF::setLength(qreal length)

Sets the length of the line to the given length. QLineF will move the end point - p2() - of the line to give the line its new length, unless length() was previously zero, in which case no scaling is attempted. For lines with very short lengths (represented by denormal floating-point values), results may be imprecise.

See also length() and unitVector().

void QLineF::setLine(qreal x1, qreal y1, qreal x2, qreal y2)

Sets this line to the start in x1, y1 and end in x2, y2.

This function was introduced in Qt 4.4.

See also setP1(), setP2(), p1(), and p2().

void QLineF::setPoints(const QPointF &p1, const QPointF &p2)

Sets the start point of this line to p1 and the end point of this line to p2.

This function was introduced in Qt 4.4.

See also setP1(), setP2(), p1(), and p2().

QLine QLineF::toLine() const

Returns an integer based copy of this line.

Note that the returned line's start and end points are rounded to the nearest integer.

See also QLineF().

void QLineF::translate(const QPointF &offset)

Translates this line by the given offset.

void QLineF::translate(qreal dx, qreal dy)

This is an overloaded function.

Translates this line the distance specified by dx and dy.

QLineF QLineF::translated(const QPointF &offset) const

Returns this line translated by the given offset.

This function was introduced in Qt 4.4.

QLineF QLineF::translated(qreal dx, qreal dy) const

This is an overloaded function.

Returns this line translated the distance specified by dx and dy.

This function was introduced in Qt 4.4.

QLineF QLineF::unitVector() const

Returns the unit vector for this line, i.e a line starting at the same point as this line with a length of 1.0, provided the line is non-null.

See also normalVector() and setLength().

bool QLineF::operator!=(const QLineF &line) const

Returns true if the given line is not the same as this line.

A line is different from another line if their start or end points differ, or the internal order of the points is different.

bool QLineF::operator==(const QLineF &line) const

Returns true if the given line is the same as this line.

A line is identical to another line if the start and end points are identical, and the internal order of the points is the same.