QPoint

PyQt5.QtCore.QPoint

Description

The QPoint class defines a point in the plane using integer precision.

A point is specified by a x coordinate and an y coordinate which can be accessed using the x() and y() functions. The isNull() function returns true if both x and y are set to 0. The coordinates can be set (or altered) using the setX() and setY() functions, or alternatively the rx() and ry() functions which return references to the coordinates (allowing direct manipulation).

Given a point p, the following statements are all equivalent:

# QPoint p;

# p.setX(p.x() + 1);
# p += QPoint(1, 0);
# p.rx()++;

A QPoint object can also be used as a vector: Addition and subtraction are defined as for vectors (each component is added separately). A QPoint object can also be divided or multiplied by an int or a qreal.

In addition, the QPoint class provides the manhattanLength() function which gives an inexpensive approximation of the length of the QPoint object interpreted as a vector. Finally, QPoint objects can be streamed as well as compared.

See also

QPointF, QPolygon.

Methods

__init__()

TODO


__init__(QPoint)

TODO


__init__(int, int)

TODO


__add__(QPoint) → QPoint

TODO


__bool__() → int

TODO


@staticmethod
dotProduct(QPoint, QPoint) → int

TODO


__eq__(QPoint) → bool

TODO


__iadd__(QPoint) → QPoint

TODO


__imul__(int) → QPoint

TODO


__imul__(float) → QPoint

TODO


isNull() → bool

TODO


__isub__(QPoint) → QPoint

TODO


__itruediv__(float) → QPoint

TODO


manhattanLength() → int

TODO


__mul__(int) → QPoint

TODO


__mul__(float) → QPoint

TODO


__ne__(QPoint) → bool

TODO


__neg__() → QPoint

TODO


__pos__() → QPoint

TODO


__repr__() → str

TODO


__rmul__(int) → QPoint

TODO


__rmul__(float) → QPoint

TODO


setX(int)

See also

x().


setY(int)

See also

y().


__sub__(QPoint) → QPoint

TODO


transposed() → QPoint

TODO


__truediv__(float) → QPoint

TODO


x() → int

See also

setX().


y() → int

See also

setY().