Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -115,7 +115,7 @@ def plot_pladder(PLadder):
|
|
115 |
ax.plot([0.5, 2.5], [1, 1], 'k--')
|
116 |
ax.plot([1, 2], [2, 2], 'k--')
|
117 |
# Define symbol positions outside the triangle
|
118 |
-
positions = [(0.2,0), (0.3,1.2), (0.8,2.2), (1.5,3), (2.2,2.2), (2.7,1.2), (3.2,0.2)]
|
119 |
# Plot planet symbols
|
120 |
for i, (x, y) in enumerate(positions):
|
121 |
ax.text(x, y, planet_symbols[PLadder[i]], ha='center', va='center', fontsize=24)
|
|
|
115 |
ax.plot([0.5, 2.5], [1, 1], 'k--')
|
116 |
ax.plot([1, 2], [2, 2], 'k--')
|
117 |
# Define symbol positions outside the triangle
|
118 |
+
positions = [(-0.2,0.2), (0.3,1.2), (0.8,2.2), (1.5,3.2), (2.2,2.2), (2.7,1.2), (3.2,0.2)]
|
119 |
# Plot planet symbols
|
120 |
for i, (x, y) in enumerate(positions):
|
121 |
ax.text(x, y, planet_symbols[PLadder[i]], ha='center', va='center', fontsize=24)
|