Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -10,12 +10,10 @@ from Gradio_UI import GradioUI
|
|
10 |
|
11 |
@tool
|
12 |
def plot_omocentric_circles(distance: float, n: int)-> None:
|
13 |
-
"""
|
14 |
-
A tool that plots n omocentric circles with a given seed distance, each in a different color.
|
15 |
-
|
16 |
Args:
|
17 |
-
distance
|
18 |
-
n
|
19 |
"""
|
20 |
fig, ax = plt.subplots()
|
21 |
ax.set_aspect('equal')
|
|
|
10 |
|
11 |
@tool
|
12 |
def plot_omocentric_circles(distance: float, n: int)-> None:
|
13 |
+
"""A tool that plots n omocentric circles with a given seed distance, each in a different color.
|
|
|
|
|
14 |
Args:
|
15 |
+
distance: Distance between consecutive circles.
|
16 |
+
n: Number of circles to plot.
|
17 |
"""
|
18 |
fig, ax = plt.subplots()
|
19 |
ax.set_aspect('equal')
|