Spaces:
Sleeping
Sleeping
Update app.py
Browse files
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=
|
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 |
|