Sephfox commited on
Commit
a91f6dd
·
verified ·
1 Parent(s): 4bb4069

Update app.py

Browse files
Files changed (1) hide show
  1. app.py +1 -1
app.py CHANGED
@@ -17,7 +17,7 @@ xx, yy = np.meshgrid(x, y)
17
  touch_points = np.column_stack((xx.ravel(), yy.ravel()))
18
 
19
  original_points = touch_points.copy()
20
- velocities = np.zeros_like(touch_points, dtype=bool)
21
 
22
  source = ColumnDataSource(data=dict(x=touch_points[:, 0], y=touch_points[:, 1]))
23
 
 
17
  touch_points = np.column_stack((xx.ravel(), yy.ravel()))
18
 
19
  original_points = touch_points.copy()
20
+ velocities = np.zeros_like(touch_points, dtype=np.bool_)
21
 
22
  source = ColumnDataSource(data=dict(x=touch_points[:, 0], y=touch_points[:, 1]))
23