Home · All Classes · Main Classes · Grouped Classes · Modules · Functions |
The QPolygonF class provides a vector of floating point points. More...
#include <QPolygonF>
Inherits QVector<QPointF>.
Note: All the functions in this class are reentrant.
The QPolygonF class provides a vector of floating point points.
A QPolygonF is a QVector<QPointF>. It is implicitly shared. In addition to the functions provided by QVector, QPolygonF provides some point-specific functions.
The easiest way to add points to a QPolygonF is to use QVector's streaming operators, as illustrated below:
QPolygonF polygon; polygon << QPointF(10, 20) << QPointF(20, 30);
All other forms of manipulating a vector are available too.
For geometry operations use boundingRect() and translate(). There is also the QMatrix::map() function for more general transformations of QPolygonFs.
Among others, QPolygonF is used by QPainter::drawLineSegments(), QPainter::drawPolyline(), QPainter::drawPolygon() and QPainter::drawCubicBezier().
See also QPainter, QMatrix, QVector, and QPolygon.
Constructs a polygon with no points.
See also QVector::isEmpty().
Constructs a polygon with size points. Makes a polygon with no points if size == 0.
See also QVector::isEmpty().
Copy constructor. Constructs a copy of the other polygon.
Constructs a polygon from the given vector of points.
Constructs a closed polygon from the rectangle specified by rect.
The point array just contains the four vertices of the rectangle in clockwise order starting and ending with the top-left vertex.
See also QPolygon::QPolygon() and isClosed().
Constructs a float based polygon from the int based polygon specified by a.
See also toPolygon().
Destroys the point array.
Returns the bounding rectangle of the polygon, or QRectF(0,0,0,0) if the array is empty.
Returns true if the polygon is closed; otherwise returns false.
A polygon is said to be closed if its start point and end point are equal.
See also QVector::first() and QVector::last().
Returns a QPolygon by converting each QPointF to a QPoint.
See also QPointF::toPoint().
Translate all points in the polygon by the given offset.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Translates all points in the polygon by (dx, dy).
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Writes the point array, a to the stream s and returns a reference to the stream.
See also Format of the QDataStream operators.
This is an overloaded member function, provided for convenience. It behaves essentially like the above function.
Reads a point array, a from the stream s and returns a reference to the stream.
See also Format of the QDataStream operators.
Copyright © 2005 Trolltech | Trademarks | Qt 4.1.0 |