![]() |
Qt 6.x
The Qt SDK
|
\inmodule QtCore More...
#include <qline.h>
Public Types | |
enum | IntersectionType { NoIntersection , BoundedIntersection , UnboundedIntersection } |
\typealias QLineF::IntersectType More... | |
using | IntersectType = IntersectionType |
Public Member Functions | |
constexpr | QLineF () |
Constructs a null line. | |
constexpr | QLineF (const QPointF &pt1, const QPointF &pt2) |
Constructs a line object that represents the line between p1 and p2. | |
constexpr | QLineF (qreal x1, qreal y1, qreal x2, qreal y2) |
Constructs a line object that represents the line between (x1, y1) and (x2, y2). | |
constexpr | QLineF (const QLine &line) |
Construct a QLineF object from the given integer-based line. | |
constexpr bool | isNull () const |
Returns true if the line does not have distinct start and end points; otherwise returns false . | |
constexpr QPointF | p1 () const |
Returns the line's start point. | |
constexpr QPointF | p2 () const |
Returns the line's end point. | |
constexpr qreal | x1 () const |
Returns the x-coordinate of the line's start point. | |
constexpr qreal | y1 () const |
Returns the y-coordinate of the line's start point. | |
constexpr qreal | x2 () const |
Returns the x-coordinate of the line's end point. | |
constexpr qreal | y2 () const |
Returns the y-coordinate of the line's end point. | |
constexpr qreal | dx () const |
Returns the horizontal component of the line's vector. | |
constexpr qreal | dy () const |
Returns the vertical component of the line's vector. | |
qreal | length () const |
Returns the length of the line. | |
void | setLength (qreal len) |
Sets the length of the line to the given finite length. | |
qreal | angle () const |
void | setAngle (qreal angle) |
qreal | angleTo (const QLineF &l) const |
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. | |
constexpr QLineF | normalVector () const |
Returns a line that is perpendicular to this line with the same starting point and length. | |
IntersectionType | intersects (const QLineF &l, QPointF *intersectionPoint=nullptr) const |
constexpr QPointF | pointAt (qreal t) const |
Returns the point at the position specified by finite parameter t. | |
void | translate (const QPointF &p) |
Translates this line by the given offset. | |
void | translate (qreal dx, qreal dy) |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Translates this line the distance specified by dx and dy. | |
constexpr QLineF | translated (const QPointF &p) const |
constexpr QLineF | translated (qreal dx, qreal dy) const |
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts. | |
constexpr QPointF | center () const |
void | setP1 (const QPointF &p1) |
void | setP2 (const QPointF &p2) |
void | setPoints (const QPointF &p1, const QPointF &p2) |
void | setLine (qreal x1, qreal y1, qreal x2, qreal y2) |
constexpr bool | operator== (const QLineF &d) const |
Returns true if the given line is the same as this line. | |
constexpr bool | operator!= (const QLineF &d) const |
Returns true if the given line is not the same as this line. | |
constexpr QLine | toLine () const |
Returns an integer-based copy of this line. | |
Static Public Member Functions | |
static QLineF | fromPolar (qreal length, qreal angle) |
Related Symbols | |
(Note that these are not member symbols.) | |
QDataStream & | operator<< (QDataStream &stream, const QLineF &line) |
Writes the given line to the given stream and returns a reference to the stream. | |
QDataStream & | operator>> (QDataStream &stream, QLineF &line) |
Reads a line from the given stream into the given line and returns a reference to the stream. | |
\inmodule QtCore
The QLineF class provides a two-dimensional vector using floating point precision.
A QLineF describes a finite length line (or line segment) on a two-dimensional surface. QLineF defines the start and end points of the line using floating point accuracy for coordinates. Use the toLine() function to retrieve an integer-based copy of this line.
\table \row
The positions of the line's start and end points can be retrieved using the p1(), x1(), y1(), p2(), x2(), and y2() functions. The dx() and dy() functions return the horizontal and vertical components of the line, respectively.
The line's length can be retrieved using the length() function, and altered using the setLength() function. Similarly, angle() and setAngle() are respectively used for retrieving and altering the angle of the line. Use the isNull() function to determine whether the QLineF represents a valid line or a null line.
The intersects() function determines the IntersectionType for this line and a given line, while the angleTo() function returns the angle between the lines. In addition, the unitVector() function returns a line that has the same starting point as this line, but with a length of only 1, while the normalVector() function returns a line that is perpendicular to this line with the same starting point and length.
Finally, the line can be translated a given offset using the translate() function, and can be traversed using the pointAt() function.
\typealias QLineF::IntersectType
Describes the intersection between two lines.
\table \row
\value NoIntersection Indicates that the lines do not intersect; i.e. they are parallel.
\value UnboundedIntersection The two lines intersect, but not within the range defined by their lengths. This will be the case if the lines are not parallel. intersect() will also return this value if the intersect point is within the start and end point of only one of the lines.
\value BoundedIntersection The two lines intersect with each other within the start and end points of each line.
Enumerator | |
---|---|
NoIntersection | |
BoundedIntersection | |
UnboundedIntersection |
|
inlineconstexpr |
Constructs a null line.
Definition at line 250 of file qline.h.
Referenced by fromPolar(), normalVector(), and translated().
|
inlineconstexpr |
Construct a QLineF object from the given integer-based line.
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).
Definition at line 558 of file qline.cpp.
References dx(), dy(), qAtan2(), qFuzzyCompare(), qRadiansToDegrees(), QPointF::x(), and QPointF::y().
Referenced by QPainterPath::angleAtPercent(), QQuickMultiPointHandler::angles(), angleTo(), QBezier::inflectionPoints(), qt_getInflectionPoints(), QPinchGestureRecognizer::recognize(), and QSwipeGestureRecognizer::recognize().
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 \l{intersects()}{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.
Definition at line 767 of file qline.cpp.
References a1, a2, angle(), isNull(), and qFuzzyCompare().
Referenced by adapted_angle_on_x(), and QStroker::joinPoints().
|
inlineconstexpr |
Returns the center point of this line. This is equivalent to 0.5 * p1() + 0.5 * p2().
Definition at line 335 of file qline.h.
References QPoint::x(), and QPoint::y().
|
inlineconstexpr |
Returns the horizontal component of the line's vector.
Definition at line 299 of file qline.h.
References QPoint::x().
Referenced by angle(), QStroker::joinPoints(), length(), normalVector(), qt_stroke_side(), setAngle(), setLength(), glyph_metrics_t::transformed(), unitVector(), and QGraphicsWidgetPrivate::windowFrameMouseMoveEvent().
|
inlineconstexpr |
Returns the vertical component of the line's vector.
Definition at line 304 of file qline.h.
References QPoint::y().
Referenced by angle(), QStroker::joinPoints(), length(), normalVector(), qt_stroke_side(), setAngle(), setLength(), glyph_metrics_t::transformed(), unitVector(), and QGraphicsWidgetPrivate::windowFrameMouseMoveEvent().
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.
Definition at line 607 of file qline.cpp.
References QLineF(), qCos(), qDegreesToRadians(), and qSin().
QLineF::IntersectionType QLineF::intersects | ( | const QLineF & | line, |
QPointF * | intersectionPoint = nullptr |
||
) | 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.
Definition at line 647 of file qline.cpp.
References BoundedIntersection, NoIntersection, qt_is_finite(), UnboundedIntersection, and QPointF::y().
Referenced by QStroker::joinPoints(), qt_quadraticForCubic(), and quadraticForCubic().
|
inlineconstexpr |
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.
true
for lines whose length() is not zero.Definition at line 284 of file qline.h.
References qFuzzyCompare(), QPoint::x(), and QPoint::y().
Referenced by angleTo(), QBezier::endTangent(), QStroker::processCurrentSubpath(), and QBezier::startTangent().
qreal QLineF::length | ( | ) | const |
Returns the length of the line.
Definition at line 542 of file qline.cpp.
References dx(), dy(), and qHypot().
Referenced by QBezier::addIfClose(), QGraphicsScenePrivate::findClosestTouchPointId(), QQuickSwipeDelegatePrivate::handleMouseMoveEvent(), QQuickPageIndicatorPrivate::itemAt(), QStroker::joinPoints(), QPainterPath::length(), QScroller::pixelPerMeter(), QDashStroker::processCurrentSubpath(), QPinchGestureRecognizer::recognize(), scoreQuadratic(), setAngle(), setLength(), shift(), and QRasterPaintEngine::stroke().
|
inlineconstexpr |
Returns a line that is perpendicular to this line with the same starting point and length.
Definition at line 309 of file qline.h.
References QLineF(), dx(), dy(), and p1().
Referenced by shift().
|
inlineconstexpr |
|
inlineconstexpr |
|
inlineconstexpr |
Returns the line's start point.
Definition at line 289 of file qline.h.
Referenced by QSvgLine::bounds(), QPaintEngine::drawLines(), QCoreGraphicsPaintEngine::drawLines(), QSvgLine::fastBounds(), QStroker::joinPoints(), normalVector(), QRasterPaintEnginePrivate::rasterizeLine_dashed(), QRasterPaintEngine::stroke(), unitVector(), and QGraphicsWidgetPrivate::windowFrameMouseMoveEvent().
|
inlineconstexpr |
Returns the line's end point.
Definition at line 294 of file qline.h.
Referenced by QSvgLine::bounds(), QPaintEngine::drawLines(), QCoreGraphicsPaintEngine::drawLines(), QSvgLine::fastBounds(), QStroker::joinPoints(), QDashStroker::processCurrentSubpath(), QRasterPaintEnginePrivate::rasterizeLine_dashed(), shift(), QRasterPaintEngine::stroke(), and QGraphicsWidgetPrivate::windowFrameMouseMoveEvent().
Returns the point at the position specified by finite parameter t.
The function returns the line's start point if t = 0, and its end point if t = 1.
Definition at line 351 of file qline.h.
References QPoint::x(), and QPoint::y().
Referenced by QDashStroker::processCurrentSubpath().
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.
Definition at line 585 of file qline.cpp.
References dx(), dy(), length(), qCos(), qDegreesToRadians(), qSin(), QPointF::rx(), QPointF::ry(), QPointF::x(), and QPointF::y().
Sets the length of the line to the given finite 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.
Definition at line 340 of file qline.h.
References dx(), dy(), length(), Q_ASSERT, qIsFinite(), QPoint::x(), and QPoint::y().
Referenced by QStroker::joinPoints(), qt_stroke_side(), and QRasterPaintEnginePrivate::rasterizeLine_dashed().
|
inlineconstexpr |
Returns an integer-based copy of this line.
Note that the returned line's start and end points are rounded to the nearest integer.
Translates this line by the given offset.
Definition at line 314 of file qline.h.
Referenced by drawTextItemDecoration(), QStroker::joinPoints(), qt_stroke_side(), and translate().
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.Translates this line the distance specified by dx and dy.
Definition at line 320 of file qline.h.
References translate().
Returns this line translated by the given offset.
Definition at line 325 of file qline.h.
References QLineF().
Referenced by translated().
This is an overloaded member function, provided for convenience. It differs from the above function only in what argument(s) it accepts.
Returns this line translated the distance specified by dx and dy.
Definition at line 330 of file qline.h.
References translated().
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.
Definition at line 620 of file qline.cpp.
References dx(), dy(), p1(), qAbs(), qHypot(), qWarning, QPointF::x(), and QPointF::y().
Referenced by shift().
|
inlineconstexpr |
Returns the x-coordinate of the line's start point.
Definition at line 264 of file qline.h.
References QPoint::x().
Referenced by QX11PaintEngine::drawLines(), QX11PaintEngine::drawLines(), QStroker::joinPoints(), QTransform::map(), and glyph_metrics_t::transformed().
|
inlineconstexpr |
Returns the x-coordinate of the line's end point.
Definition at line 274 of file qline.h.
References QPoint::x().
Referenced by QX11PaintEngine::drawLines(), QX11PaintEngine::drawLines(), QStroker::joinPoints(), and QTransform::map().
|
inlineconstexpr |
Returns the y-coordinate of the line's start point.
Definition at line 269 of file qline.h.
References QPoint::y().
Referenced by QX11PaintEngine::drawLines(), QX11PaintEngine::drawLines(), QStroker::joinPoints(), QTransform::map(), and glyph_metrics_t::transformed().
|
inlineconstexpr |
Returns the y-coordinate of the line's end point.
Definition at line 279 of file qline.h.
References QPoint::y().
Referenced by QX11PaintEngine::drawLines(), QX11PaintEngine::drawLines(), QStroker::joinPoints(), and QTransform::map().
|
related |
|
related |