QPolygon

The QPolygon class provides a vector of points using integer precision. More

Inheritance diagram of PySide2.QtGui.QPolygon

Synopsis

Functions

Static functions

Detailed Description

A QPolygon object is a QVector < QPoint >. The easiest way to add points to a QPolygon is to use QVector ‘s streaming operator, as illustrated below:

polygon = QPolygon()
polygon << QPoint(10, 20) << QPoint(20, 30)

In addition to the functions provided by QVector , QPolygon provides some point-specific functions.

Each point in a polygon can be retrieved by passing its index to the point() function. To populate the polygon, QPolygon provides the setPoint() function to set the point at a given index, the setPoints() function to set all the points in the polygon (resizing it to the given number of points), and the putPoints() function which copies a number of given points into the polygon from a specified index (resizing the polygon if necessary).

QPolygon provides the boundingRect() and translate() functions for geometry functions. Use the map() function for more general transformations of QPolygons.

The QPolygon class is implicitly shared .

See also

QVector QPolygonF QLine

class QPolygon

QPolygon(v)

QPolygon(other)

QPolygon(r[, closed=false])

QPolygon(v)

QPolygon(size)

param closed

bool

param size

int

param other

QPolygon

param r

QRect

param v

QVector

Constructs a polygon with no points.

See also

isEmpty()

Constructs a polygon of the given size . Creates an empty polygon if size == 0.

See also

isEmpty()

PySide2.QtGui.QPolygon.__reduce__()
Return type

PyObject

PySide2.QtGui.QPolygon.append(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.append(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.append(l)
Parameters

l

PySide2.QtGui.QPolygon.at(i)
Parameters

iint

Return type

QPoint

PySide2.QtGui.QPolygon.back()
Return type

QPoint

PySide2.QtGui.QPolygon.boundingRect()
Return type

QRect

Returns the bounding rectangle of the polygon, or QRect (0, 0, 0, 0) if the polygon is empty.

See also

isEmpty()

PySide2.QtGui.QPolygon.capacity()
Return type

int

PySide2.QtGui.QPolygon.clear()
PySide2.QtGui.QPolygon.constData()
Return type

QPoint

PySide2.QtGui.QPolygon.constFirst()
Return type

QPoint

PySide2.QtGui.QPolygon.constLast()
Return type

QPoint

PySide2.QtGui.QPolygon.contains(t)
Parameters

tQPoint

Return type

bool

PySide2.QtGui.QPolygon.containsPoint(pt, fillRule)
Parameters
  • ptQPoint

  • fillRuleFillRule

Return type

bool

Returns true if the given point is inside the polygon according to the specified fillRule ; otherwise returns false .

PySide2.QtGui.QPolygon.count()
Return type

int

PySide2.QtGui.QPolygon.count(t)
Parameters

tQPoint

Return type

int

PySide2.QtGui.QPolygon.data()
Return type

QPoint

PySide2.QtGui.QPolygon.empty()
Return type

bool

PySide2.QtGui.QPolygon.endsWith(t)
Parameters

tQPoint

Return type

bool

PySide2.QtGui.QPolygon.fill(t[, size=-1])
Parameters
  • tQPoint

  • sizeint

Return type

PySide2.QtGui.QPolygon.first()
Return type

QPoint

static PySide2.QtGui.QPolygon.fromList(list)
Parameters

list

Return type

PySide2.QtGui.QPolygon.front()
Return type

QPoint

PySide2.QtGui.QPolygon.indexOf(t[, from=0])
Parameters
  • tQPoint

  • fromint

Return type

int

PySide2.QtGui.QPolygon.insert(i, t)
Parameters
  • iint

  • tQPoint

PySide2.QtGui.QPolygon.insert(i, t)
Parameters
  • iint

  • tQPoint

PySide2.QtGui.QPolygon.insert(i, n, t)
Parameters
  • iint

  • nint

  • tQPoint

PySide2.QtGui.QPolygon.intersected(r)
Parameters

rQPolygon

Return type

QPolygon

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

PySide2.QtGui.QPolygon.intersects(r)
Parameters

rQPolygon

Return type

bool

Returns true if the current polygon intersects at any point the given polygon p . Also returns true if the current polygon contains or is contained by any part of p .

Set operations on polygons will treat the polygons as areas. Non-closed polygons will be treated as implicitly closed.

See also

intersected()

PySide2.QtGui.QPolygon.isEmpty()
Return type

bool

PySide2.QtGui.QPolygon.isSharedWith(other)
Parameters

other

Return type

bool

PySide2.QtGui.QPolygon.last()
Return type

QPoint

PySide2.QtGui.QPolygon.lastIndexOf(t[, from=-1])
Parameters
  • tQPoint

  • fromint

Return type

int

PySide2.QtGui.QPolygon.length()
Return type

int

PySide2.QtGui.QPolygon.mid(pos[, len=-1])
Parameters
  • posint

  • lenint

Return type

PySide2.QtGui.QPolygon.move(from, to)
Parameters
  • fromint

  • toint

PySide2.QtGui.QPolygon.__ne__(v)
Parameters

v

Return type

bool

PySide2.QtGui.QPolygon.__mul__(m)
Parameters

mQTransform

Return type

QPolygon

PySide2.QtGui.QPolygon.__mul__(m)
Parameters

mQMatrix

Return type

QPolygon

PySide2.QtGui.QPolygon.__add__(l)
Parameters

l

Return type

PySide2.QtGui.QPolygon.__iadd__(t)
Parameters

tQPoint

Return type

PySide2.QtGui.QPolygon.__iadd__(t)
Parameters

tQPoint

Return type

PySide2.QtGui.QPolygon.__lshift__(t)
Parameters

tQPoint

Return type

PySide2.QtGui.QPolygon.__lshift__(t)
Parameters

tQPoint

Return type

PySide2.QtGui.QPolygon.__lshift__(l)
Parameters

l

Return type

PySide2.QtGui.QPolygon.__eq__(v)
Parameters

v

Return type

bool

PySide2.QtGui.QPolygon.operator[](i)
Parameters

iint

Return type

QPoint

PySide2.QtGui.QPolygon.pop_back()
PySide2.QtGui.QPolygon.pop_front()
PySide2.QtGui.QPolygon.prepend(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.prepend(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.push_back(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.push_back(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.push_front(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.push_front(t)
Parameters

tQPoint

PySide2.QtGui.QPolygon.remove(i)
Parameters

iint

PySide2.QtGui.QPolygon.remove(i, n)
Parameters
  • iint

  • nint

PySide2.QtGui.QPolygon.removeAll(t)
Parameters

tQPoint

Return type

int

PySide2.QtGui.QPolygon.removeAt(i)
Parameters

iint

PySide2.QtGui.QPolygon.removeFirst()
PySide2.QtGui.QPolygon.removeLast()
PySide2.QtGui.QPolygon.removeOne(t)
Parameters

tQPoint

Return type

bool

PySide2.QtGui.QPolygon.replace(i, t)
Parameters
  • iint

  • tQPoint

PySide2.QtGui.QPolygon.reserve(size)
Parameters

sizeint

PySide2.QtGui.QPolygon.resize(size)
Parameters

sizeint

PySide2.QtGui.QPolygon.setSharable(sharable)
Parameters

sharablebool

PySide2.QtGui.QPolygon.shrink_to_fit()
PySide2.QtGui.QPolygon.size()
Return type

int

PySide2.QtGui.QPolygon.squeeze()
PySide2.QtGui.QPolygon.startsWith(t)
Parameters

tQPoint

Return type

bool

PySide2.QtGui.QPolygon.subtracted(r)
Parameters

rQPolygon

Return type

QPolygon

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.

PySide2.QtGui.QPolygon.swap(other)
Parameters

otherQPolygon

Swaps polygon other with this polygon. This operation is very fast and never fails.

PySide2.QtGui.QPolygon.takeAt(i)
Parameters

iint

Return type

QPoint

PySide2.QtGui.QPolygon.takeFirst()
Return type

QPoint

PySide2.QtGui.QPolygon.takeLast()
Return type

QPoint

PySide2.QtGui.QPolygon.toList()
Return type

PySide2.QtGui.QPolygon.translate(offset)
Parameters

offsetQPoint

This is an overloaded function.

Translates all points in the polygon by the given offset .

See also

translated()

PySide2.QtGui.QPolygon.translate(dx, dy)
Parameters
  • dxint

  • dyint

Translates all points in the polygon by (dx , dy ).

See also

translated()

PySide2.QtGui.QPolygon.translated(offset)
Parameters

offsetQPoint

Return type

QPolygon

This is an overloaded function.

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

See also

translate()

PySide2.QtGui.QPolygon.translated(dx, dy)
Parameters
  • dxint

  • dyint

Return type

QPolygon

Returns a copy of the polygon that is translated by (dx , dy ).

See also

translate()

PySide2.QtGui.QPolygon.united(r)
Parameters

rQPolygon

Return type

QPolygon

Returns a polygon which is the union of this polygon and r .

Set operations on polygons, will treat the polygons as areas, and implicitly close the polygon.

PySide2.QtGui.QPolygon.value(i)
Parameters

iint

Return type

QPoint

PySide2.QtGui.QPolygon.value(i, defaultValue)
Parameters
  • iint

  • defaultValueQPoint

Return type

QPoint