Comment out debug print

This commit is contained in:
Veronica Berglyd Olsen
2024-04-09 22:41:37 +02:00
parent 4003ececb2
commit dd15c93f51
+1 -1
View File
@@ -292,7 +292,7 @@ class _ShapeCache:
return self._cache[shape]
def circ(r: float, a: float, x: float, y: float) -> QPointF:
print(round(x+r*sin(pi*a/180), 2), round(y-r*cos(pi*a/180), 2))
# print(round(x+r*sin(pi*a/180), 2), round(y-r*cos(pi*a/180), 2))
return QPointF(round(x+r*sin(pi*a/180), 2), round(y-r*cos(pi*a/180), 2))
path = QPainterPath()