QPointF¶
Synopsis¶
Functions¶
def
__add__
()def
__add__
(, p2)def
__div__
(, divisor)def
__eq__
(, p2)def
__iadd__
(p)def
__idiv__
(c)def
__imul__
(c)def
__isub__
(p)def
__mul__
(, c)def
__mul__
(, m)def
__mul__
(, m)def
__mul__
(, matrix)def
__mul__
(c)def
__mul__
(matrix)def
__ne__
(, p2)def
__reduce__
()def
__repr__
()def
__sub__
()def
__sub__
(, p2)def
isNull
()def
manhattanLength
()def
setX
(x)def
setY
(y)def
toPoint
()def
toTuple
()def
transposed
()def
x
()def
y
()
Static functions¶
def
dotProduct
(p1, p2)
Detailed Description¶
A point is specified by a x coordinate and an y coordinate which can be accessed using the
x()
andy()
functions. The coordinates of the point are specified using floating point numbers for accuracy. TheisNull()
function returnstrue
if both x and y are set to 0.0. The coordinates can be set (or altered) using thesetX()
andsetY()
functions, or alternatively therx()
andry()
functions which return references to the coordinates (allowing direct manipulation).Given a point p , the following statements are all equivalent:
p = QPointF() p.setX(p.x() + 1.0) p += QPointF(1.0, 0.0) #p.rx()++;A
QPointF
object can also be used as a vector: Addition and subtraction are defined as for vectors (each component is added separately). AQPointF
object can also be divided or multiplied by anint
or aqreal
.In addition, the
QPointF
class provides a constructor converting aQPoint
object into aQPointF
object, and a correspondingtoPoint()
function which returns aQPoint
copy of this point. Finally,QPointF
objects can be streamed as well as compared.See also
QPoint
QPolygonF
- class PySide2.QtCore.QPointF¶
PySide2.QtCore.QPointF(p)
PySide2.QtCore.QPointF(QPointF)
PySide2.QtCore.QPointF(xpos, ypos)
- param ypos:
float
- param p:
- param xpos:
float
- param QPointF:
Constructs a null point, i.e. with coordinates (0.0, 0.0)
See also
Constructs a copy of the given
point
.See also
Constructs a point with the given coordinates (
xpos
,ypos
).
- PySide2.QtCore.QPointF.__reduce__()¶
- Return type:
object
- PySide2.QtCore.QPointF.__repr__()¶
- Return type:
object
- static PySide2.QtCore.QPointF.dotProduct(p1, p2)¶
- Parameters:
- Return type:
float
QPointF p( 3.1, 7.1); QPointF q(-1.0, 4.1); int lengthSquared = QPointF::dotProduct(p, q); // lengthSquared becomes 26.01
Returns the dot product of
p1
andp2
.
- PySide2.QtCore.QPointF.isNull()¶
- Return type:
bool
Returns
true
if both the x and y coordinates are set to 0.0 (ignoring the sign); otherwise returnsfalse
.
- PySide2.QtCore.QPointF.manhattanLength()¶
- Return type:
float
Returns the sum of the absolute values of
x()
andy()
, traditionally known as the “Manhattan length” of the vector from the origin to the point.See also
- PySide2.QtCore.QPointF.__ne__(p2)¶
- Parameters:
- Return type:
bool
- PySide2.QtCore.QPointF.__mul__(m)¶
- Parameters:
- Return type:
- PySide2.QtCore.QPointF.__mul__(matrix)
- Parameters:
matrix –
PySide2.QtGui.QMatrix4x4
- Return type:
- PySide2.QtCore.QPointF.__mul__(matrix)
- Parameters:
matrix –
PySide2.QtGui.QMatrix4x4
- Return type:
- PySide2.QtCore.QPointF.__mul__(m)
- Parameters:
- Return type:
- PySide2.QtCore.QPointF.__mul__(c)
- Parameters:
c – float
- Return type:
- PySide2.QtCore.QPointF.__mul__(c)
- Parameters:
c – float
- Return type:
- PySide2.QtCore.QPointF.__imul__(c)¶
- Parameters:
c – float
- Return type:
Multiplies this point’s coordinates by the given
factor
, and returns a reference to this point. For example:p = QPointF(-1.1, 4.1) p *= 2.5 # p becomes (-2.75, 10.25)
See also
operator/=()
- PySide2.QtCore.QPointF.__add__()¶
- Return type:
- PySide2.QtCore.QPointF.__add__(p2)
- Parameters:
- Return type:
- PySide2.QtCore.QPointF.__iadd__(p)¶
- Parameters:
- Return type:
Adds the given
point
to this point and returns a reference to this point. For example:p = QPointF( 3.1, 7.1) q = QPointF(-1.0, 4.1) p += q # p becomes (2.1, 11.2)
See also
operator-=()
- PySide2.QtCore.QPointF.__sub__()¶
- Return type:
- PySide2.QtCore.QPointF.__sub__(p2)
- Parameters:
- Return type:
- PySide2.QtCore.QPointF.__isub__(p)¶
- Parameters:
- Return type:
Subtracts the given
point
from this point and returns a reference to this point. For example:p = QPointF( 3.1, 7.1) q = QPointF(-1.0, 4.1) p -= q # p becomes (4.1, 3.0)
See also
operator+=()
- PySide2.QtCore.QPointF.__div__(divisor)¶
- Parameters:
divisor – float
- Return type:
- PySide2.QtCore.QPointF.__idiv__(c)¶
- Parameters:
c – float
- Return type:
Divides both x and y by the given
divisor
, and returns a reference to this point. For example:p = QPointF(-2.75, 10.25) p /= 2.5 # p becomes (-1.1, 4.1)
See also
operator*=()
- PySide2.QtCore.QPointF.__eq__(p2)¶
- Parameters:
- Return type:
bool
- PySide2.QtCore.QPointF.setX(x)¶
- Parameters:
x – float
Sets the x coordinate of this point to the given
x
coordinate.
- PySide2.QtCore.QPointF.setY(y)¶
- Parameters:
y – float
Sets the y coordinate of this point to the given
y
coordinate.
- PySide2.QtCore.QPointF.toPoint()¶
- Return type:
Rounds the coordinates of this point to the nearest integer, and returns a
QPoint
object with the rounded coordinates.See also
QPointF()
- PySide2.QtCore.QPointF.toTuple()¶
- Return type:
object
- PySide2.QtCore.QPointF.transposed()¶
- Return type:
Returns a point with x and y coordinates exchanged:
QPointF{1.0, 2.0}.transposed() // {2.0, 1.0}
© 2022 The Qt Company Ltd. Documentation contributions included herein are the copyrights of their respective owners. The documentation provided herein is licensed under the terms of the GNU Free Documentation License version 1.3 as published by the Free Software Foundation. Qt and respective logos are trademarks of The Qt Company Ltd. in Finland and/or other countries worldwide. All other trademarks are property of their respective owners.