QPolygonF露
- PyQt5.QtGui.QPolygonF
Description露
The QPolygonF class provides a vector of points using floating point precision.
A QPolygonF is a QVector<QPointF>. The easiest way to add points to a QPolygonF is to use its streaming operator, as illustrated below:
# QPolygonF polygon;
# polygon << QPointF(10.4, 20.5) << QPointF(20.2, 30.2);
In addition to the functions provided by QVector, QPolygonF provides the boundingRect() and translate() functions for geometry operations. Use the QMatrix::map() function for more general transformations of QPolygonFs.
QPolygonF also provides the isClosed() function to determine whether a polygon鈥檚 start and end points are the same, and the toPolygon() function returning an integer precision copy of this polygon.
The QPolygonF class is implicitly shared.
Methods露
- __init__()
TODO
- __init__(QPolygonF)
TODO
- __init__(QRectF)
TODO
- __init__(QPolygon)
TODO
- __init__(int)
TODO
- at(int) → QPointF
TODO
- boundingRect() → QRectF
Returns the bounding rectangle of the polygon, or QRectF(0,0,0,0) if the polygon is empty.
See also
QVector::isEmpty().
- clear()
TODO
- count() → int
TODO
- data() → sip.voidptr
TODO
- __delitem__(int)
TODO
- __delitem__(slice)
TODO
- __eq__(QPolygonF) → bool
TODO
- first() → QPointF
TODO
- __getitem__(int) → QPointF
TODO
- __getitem__(slice) → QPolygonF
TODO
- intersected(QPolygonF) → QPolygonF
Returns a polygon which is the intersection of this polygon and r.
Set operations on polygons will treat the polygons as areas. Non-closed polygons will be treated as implicitly closed.
See also
- intersects(QPolygonF) → bool
TODO
- isClosed() → bool
TODO
- isEmpty() → bool
TODO
- last() → QPointF
TODO
- __len__() → int
TODO
- mid(int, length: int = -1) → QPolygonF
TODO
- __mul__(QTransform) → QPolygonF
TODO
- __ne__(QPolygonF) → bool
TODO
- remove(int)
TODO
- remove(int, int)
TODO
- __setitem__(slice, QPolygonF)
TODO
- size() → int
TODO
- subtracted(QPolygonF) → QPolygonF
Returns a polygon which is r subtracted from this polygon.
Set operations on polygons will treat the polygons as areas. Non-closed polygons will be treated as implicitly closed.
- swap(QPolygonF)
TODO
- toPolygon() → QPolygon
Creates and returns a QPolygon by converting each QPointF to a QPoint.
See also
- translate(float, float)
TODO
- translated(Union[QPointF, QPoint]) → QPolygonF
Returns a copy of the polygon that is translated by the given offset.
See also
- translated(float, float) → QPolygonF
TODO
- united(QPolygonF) → QPolygonF
Returns a polygon which is the union of this polygon and r.
Set operations on polygons will treat the polygons as areas. Non-closed polygons will be treated as implicitly closed.
See also
- value(int) → QPointF
TODO