MCPcopy Index your code
hub / github.com/PyQt5/PyQt / __init__

Method __init__

QPropertyAnimation/RlatticeEffect.py:78–93  ·  view source on GitHub ↗
(self, x, ox, y, oy, *args, **kwargs)

Source from the content-addressed store, hash-verified

76 valueChanged = pyqtSignal(int)
77
78 def __init__(self, x, ox, y, oy, *args, **kwargs):
79 super(Point, self).__init__(*args, **kwargs)
80 self.__x = x
81 self._x = x
82 self.originX = ox
83 self._y = y
84 self.__y = y
85 self.originY = oy
86 # 5个闭合点
87 self.closest = [0, 0, 0, 0, 0]
88 # 圆半径
89 self.radius = 2 + random() * 2
90 # 连线颜色
91 self.lineColor = QColor(156, 217, 249)
92 # 圆颜色
93 self.circleColor = QColor(156, 217, 249)
94
95 def initAnimation(self):
96 # 属性动画

Callers 1

__init__Method · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected