second and third circle

This commit is contained in:
2024-09-10 21:54:07 +02:00
parent 054384ca85
commit 46daf9ec93
3 changed files with 43 additions and 11 deletions

View File

@@ -10,9 +10,9 @@ class SphereGraphicsItem(QGraphicsEllipseItem):
super().__init__(self.SPHERE_WIDTH/2, self.SPHERE_WIDTH/2, self.SPHERE_WIDTH, self.SPHERE_WIDTH)
print(f"sphere at {x_pos}:{y_pos}")
self.setPos(x_pos, y_pos)
brush = QBrush(Qt.GlobalColor.blue)
brush = QBrush(Qt.GlobalColor.darkBlue)
self.setBrush(brush)
pen = QPen(Qt.GlobalColor.green)
pen = QPen(Qt.GlobalColor.blue)
pen.setWidth(3)
self.setPen(pen)
self.show()