Spaces:
Running
on
Zero
Running
on
Zero
Update app.py
Browse files
app.py
CHANGED
@@ -284,7 +284,14 @@ def reset_state(task_history):
|
|
284 |
task_history.clear()
|
285 |
return []
|
286 |
|
287 |
-
def make_pointcloud_figure(verts,
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
"""
|
289 |
Simple 3D scatter of point cloud that always shows points.
|
290 |
|
|
|
284 |
task_history.clear()
|
285 |
return []
|
286 |
|
287 |
+
def make_pointcloud_figure(verts,rotate=False):
|
288 |
+
fig = go.Figure(go.Scatter3d(
|
289 |
+
x=[0,0.2, -0.2], y=[0,0.2,-0.2], z=[0,0.2,-0.2],
|
290 |
+
mode='markers', marker=dict(size=8)
|
291 |
+
))
|
292 |
+
return fig
|
293 |
+
|
294 |
+
def make_pointcloud_figure_new1(verts, rotate=False):
|
295 |
"""
|
296 |
Simple 3D scatter of point cloud that always shows points.
|
297 |
|