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.

See also

QVector, QPolygon, QLineF.

Methods

__init__()

TODO


__init__(QPolygonF)

TODO


__init__(Iterable[Union[QPointF, QPoint]])

TODO


__init__(QRectF)

TODO


__init__(QPolygon)

TODO


__init__(int)

TODO


__add__(QPolygonF) → QPolygonF

TODO


append(Union[QPointF, QPoint])

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


__contains__(Union[QPointF, QPoint]) → int

TODO


contains(Union[QPointF, QPoint]) → bool

TODO


containsPoint(Union[QPointF, QPoint], FillRule) → bool

TODO


count() → int

TODO


count(Union[QPointF, QPoint]) → int

TODO


data() → sip.voidptr

TODO


__delitem__(int)

TODO


__delitem__(slice)

TODO


__eq__(QPolygonF) → bool

TODO


fill(Union[QPointF, QPoint], size: int = -1)

TODO


first() → QPointF

TODO


__getitem__(int) → QPointF

TODO


__getitem__(slice) → QPolygonF

TODO


__iadd__(QPolygonF) → QPolygonF

TODO


__iadd__(Union[QPointF, QPoint]) → QPolygonF

TODO


indexOf(Union[QPointF, QPoint], from: int = 0) → int

TODO


insert(int, Union[QPointF, QPoint])

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().


intersects(QPolygonF) → bool

TODO


isClosed() → bool

TODO


isEmpty() → bool

TODO


last() → QPointF

TODO


lastIndexOf(Union[QPointF, QPoint], from: int = -1) → int

TODO


__len__() → int

TODO


__lshift__(Union[QPointF, QPoint]) → object

TODO


mid(int, length: int = -1) → QPolygonF

TODO


__mul__(QTransform) → QPolygonF

TODO


__ne__(QPolygonF) → bool

TODO


prepend(Union[QPointF, QPoint])

TODO


remove(int)

TODO


remove(int, int)

TODO


replace(int, Union[QPointF, QPoint])

TODO


__setitem__(int, Union[QPointF, QPoint])

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

toPoint().


translate(Union[QPointF, QPoint])

Translate all points in the polygon by the given offset.

See also

translated().


translate(float, float)

TODO


translated(Union[QPointF, QPoint]) → QPolygonF

Returns a copy of the polygon that is translated by the given offset.

See also

translate().


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.


value(int) → QPointF

TODO


value(int, Union[QPointF, QPoint]) → QPointF

TODO