yejunliang23 commited on
Commit
aa2425e
·
verified ·
1 Parent(s): 55a202e

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +8 -1
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, rotate=False):
 
 
 
 
 
 
 
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