Update app.py
Browse files
app.py
CHANGED
|
@@ -2949,7 +2949,7 @@ def launch_main_app():
|
|
| 2949 |
return None # If drawing is disabled, return nothing
|
| 2950 |
|
| 2951 |
# Setup figure and axes for plotting
|
| 2952 |
-
fig, ax = plt.subplots(figsize=(
|
| 2953 |
ax.set_axis_off() # Remove axis lines
|
| 2954 |
ax.set_aspect('equal', adjustable='box') # Keep equal aspect ratio
|
| 2955 |
ax.set_facecolor('#f0f0f0') # Background color
|
|
|
|
| 2949 |
return None # If drawing is disabled, return nothing
|
| 2950 |
|
| 2951 |
# Setup figure and axes for plotting
|
| 2952 |
+
fig, ax = plt.subplots(figsize=(20, 15))
|
| 2953 |
ax.set_axis_off() # Remove axis lines
|
| 2954 |
ax.set_aspect('equal', adjustable='box') # Keep equal aspect ratio
|
| 2955 |
ax.set_facecolor('#f0f0f0') # Background color
|