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.
Methods露
- __init__()
TODO
- __init__(QPoint)
TODO
- __init__(int, int)
TODO
- __bool__() → int
TODO
- __eq__(QPoint) → bool
TODO
- __imul__(int) → QPoint
TODO
- __imul__(float) → QPoint
TODO
- isNull() → bool
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().
- transposed() → QPoint
TODO
- __truediv__(float) → QPoint
TODO
- x() → int
See also
- y() → int
See also