@@ -6000,6 +6000,10 @@ class QPoint(sip.simplewrapper):
6000
6000
6001
6001
def __neg__ (self ) -> 'QPoint' : ...
6002
6002
def __pos__ (self ) -> 'QPoint' : ...
6003
+ def __add__ (self , point : 'QPoint' ) -> 'QPoint' : ...
6004
+ def __sub__ (self , point : 'QPoint' ) -> 'QPoint' : ...
6005
+ def __mul__ (self , factor : float ) -> 'QPoint' : ...
6006
+ def __truediv__ (self , divisor : float ) -> 'QPoint' : ...
6003
6007
@staticmethod
6004
6008
def dotProduct (p1 : 'QPoint' , p2 : 'QPoint' ) -> int : ...
6005
6009
def setY (self , ypos : int ) -> None : ...
@@ -6025,6 +6029,10 @@ class QPointF(sip.simplewrapper):
6025
6029
6026
6030
def __neg__ (self ) -> 'QPointF' : ...
6027
6031
def __pos__ (self ) -> 'QPointF' : ...
6032
+ def __add__ (self , point : 'QPointF' ) -> 'QPointF' : ...
6033
+ def __sub__ (self , point : 'QPointF' ) -> 'QPointF' : ...
6034
+ def __mul__ (self , factor : float ) -> 'QPointF' : ...
6035
+ def __truediv__ (self , divisor : float ) -> 'QPointF' : ...
6028
6036
@staticmethod
6029
6037
def dotProduct (p1 : typing .Union ['QPointF' , QPoint ], p2 : typing .Union ['QPointF' , QPoint ]) -> float : ...
6030
6038
def manhattanLength (self ) -> float : ...
0 commit comments