Spaces:
Sleeping
Sleeping
File size: 75,914 Bytes
ce11d27 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 | """
Flow field system β faithful port from Android's FlowFieldSystem.java.
Features:
- 40Β³ velocity grid with trilinear interpolation
- Particle lifecycle (lattice init, pre-integration, lifespan, wrapping)
- Turbo colormap (exact polynomial from Android)
- Ball/probe following flow field
- Pre-computed animation frames for dashboard
Constants matching Android:
GRID = 40, LIFESPAN = 57, PRE_AGE = 34, DT = 0.02
"""
from __future__ import annotations
from typing import Optional, Tuple
import numpy as np
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# TURBO COLORMAP (exact polynomial from FlowFieldSystem.java)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
def turbo_colormap(t: np.ndarray, out: Optional[np.ndarray] = None) -> np.ndarray:
"""Apply Turbo colormap to speed values.
Exact polynomial coefficients from FlowFieldSystem.java.
Works with scalar or array input.
Args:
t: Speed values normalized to [0, 1]. Can be scalar or (N,) array.
out: Optional pre-allocated (N, 3) output buffer to avoid allocation.
Returns:
(N, 3) array of RGB values in [0, 1].
"""
t = np.clip(np.atleast_1d(t).astype(np.float64), 0.0, 1.0)
r = (34.61 + t * (1172.33 + t * (-10793.56 + t * (33300.12
+ t * (-38345.17 + 14829.80 * t))))) / 255.0
g = (23.31 + t * (557.33 + t * (1225.33 + t * (-3574.96
+ t * 2199.29)))) / 255.0
b = (27.20 + t * (3211.10 + t * (-15327.97 + t * (34592.87
+ t * (-30538.66 + 9347.97 * t))))) / 255.0
if out is not None and out.shape == (len(t), 3):
np.clip(r, 0, 1, out=out[:, 0])
np.clip(g, 0, 1, out=out[:, 1])
np.clip(b, 0, 1, out=out[:, 2])
return out
rgb = np.stack([np.clip(r, 0, 1), np.clip(g, 0, 1), np.clip(b, 0, 1)], axis=-1)
return rgb
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# DIVERGING COLORMAP (matching FlowFieldSystem.java)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
def diverging_colormap(t: np.ndarray) -> np.ndarray:
"""Red β Blue β Green diverging colormap.
Args:
t: Values in [-1, 1]. Negative β red, zero β blue, positive β green.
Returns:
(N, 3) array of RGB values in [0, 1].
"""
t = np.clip(np.atleast_1d(t).astype(np.float64), -1.0, 1.0)
RED = np.array([1.0, 0.1, 0.1])
BLUE = np.array([0.18, 0.28, 1.0])
GREEN = np.array([0.0, 0.78, 0.0])
rgb = np.zeros((len(t), 3))
neg_mask = t < 0
pos_mask = ~neg_mask
# Negative: blue β red
if np.any(neg_mask):
a = -t[neg_mask]
rgb[neg_mask] = BLUE[None, :] * (1 - a[:, None]) + RED[None, :] * a[:, None]
# Positive: blue β green
if np.any(pos_mask):
a = t[pos_mask]
rgb[pos_mask] = BLUE[None, :] * (1 - a[:, None]) + GREEN[None, :] * a[:, None]
return rgb
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# SCORE COLORMAP (red β yellow β green for 0 β 0.5 β 1)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
def score_colormap(t: np.ndarray) -> np.ndarray:
"""Map score values [0, 1] to red β yellow β green gradient.
0.0 = red (bad/failure), 0.5 = yellow (neutral), 1.0 = green (success).
Args:
t: Score values in [0, 1]. Can be scalar or (N,) array.
Returns:
(N, 3) array of RGB values in [0, 1].
"""
t = np.clip(np.atleast_1d(t).astype(np.float64), 0.0, 1.0)
rgb = np.zeros((len(t), 3))
# Red channel: 1.0 at t=0, 1.0 at t=0.5, 0.0 at t=1.0
rgb[:, 0] = np.where(t <= 0.5, 1.0, 2.0 * (1.0 - t))
# Green channel: 0.0 at t=0, 1.0 at t=0.5, 1.0 at t=1.0
rgb[:, 1] = np.where(t <= 0.5, 2.0 * t, 1.0)
# Blue stays near 0 for vivid colors
rgb[:, 2] = 0.05
return np.clip(rgb, 0.0, 1.0)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# FLOW FIELD SYSTEM (matching FlowFieldSystem.java)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
class FlowFieldSystem:
"""Particle flow field system.
Faithful port from Android's FlowFieldSystem.java.
Uses a 40Β³ velocity grid with trilinear interpolation,
particle lifecycle with wrapping, and Turbo speed coloring.
Args:
velocity_grid: (G, G, G, 3) velocity field array.
axis_min: (3,) minimum bounds of the domain.
axis_max: (3,) maximum bounds of the domain.
particle_grid: Particle grid resolution (default 20 β 8000 particles).
Use 40 for full Android fidelity (64,000 particles).
"""
# Constants matching Android
VELOCITY_GRID_SIZE = 40
LIFESPAN = 57 # particle lifetime in frames
PRE_AGE = 34 # pre-integration steps
DT = 0.02 # world-units per step
def __init__(
self,
velocity_grid: np.ndarray,
axis_min: np.ndarray,
axis_max: np.ndarray,
particle_grid: int = 20,
path_points: Optional[np.ndarray] = None,
confidence_grid: Optional[np.ndarray] = None,
):
self.velocity_grid = velocity_grid.astype(np.float32)
self.grid_size = velocity_grid.shape[0] # typically 40
self.axis_min = np.asarray(axis_min, dtype=np.float32)
self.axis_max = np.asarray(axis_max, dtype=np.float32)
self.span = self.axis_max - self.axis_min
self.particle_grid = particle_grid
self.particle_count = particle_grid ** 3
self.speed_multiplier = 1.0
# MDN confidence grid (None for RBF models)
self._confidence_grid = confidence_grid # (G, G, G) values in [0, 1]
self.confidence_strength = 0.0 # 0 = ignore confidence, 1 = full effect
# Build path occupancy mask for blob-based spawning
self._path_mask = None
self._blob_opacity = None
self._score_grid = None
self._mask_res = 0
self.blob_enabled = True # can be toggled off for full-cube spawning
if path_points is not None and len(path_points) >= 2:
self._build_path_mask(path_points)
# Particle state + pre-allocated buffers (before init/pre-integration)
N = self.particle_count
self.pos = np.zeros((N, 3), dtype=np.float32)
self.age = np.zeros(N, dtype=np.int32)
self._buf_velocities = np.zeros((N, 3), dtype=np.float32)
self._buf_speeds = np.zeros(N, dtype=np.float32)
self._buf_colors = np.zeros((N, 3), dtype=np.float32)
self._buf_alphas = np.ones(N, dtype=np.float32)
self._buf_pos_out = np.zeros((N, 3), dtype=np.float32)
self._buf_normalized = np.zeros((N, 3), dtype=np.float32)
# Initialize on lattice (filtered by path mask if available)
self._init_lattice()
# Save blob-constrained positions as respawn points BEFORE
# pre-integration so particles always respawn inside the blob
self.orig_pos = self.pos.copy()
# Pre-integrate to displace from regular lattice (matching Android)
self._dry_integrate(self.PRE_AGE)
# After pre-integration, snap any particles that drifted outside
# the blob back to their blob-constrained origin
if self._blob_opacity is not None and self.blob_enabled:
for i in range(self.particle_count):
if not self._point_in_blob_world(*self.pos[i]):
self.pos[i] = self.orig_pos[i]
# Randomize ages to stagger respawns (matching Android initParticles)
self.age = np.random.randint(0, self.LIFESPAN, N, dtype=np.int32)
# Ball state
self.ball_pos = np.array([
(axis_min[0] + axis_max[0]) / 2,
(axis_min[1] + axis_max[1]) / 2,
(axis_min[2] + axis_max[2]) / 2,
], dtype=np.float32)
self.ball_trail: list = []
self.ball_flowing = False
# ββ Blob tuning constants ββββββββββββββββββββββββββββββββββ
# BLOB_RESOLUTION: occupancy grid resolution (higher = finer blob shape)
BLOB_RESOLUTION = 42
# BLOB_RADIUS: minimum influence radius around each path point, as
# fraction of the per-axis span. The actual radius is computed
# adaptively from data density (median NN distance Γ 1.5) and
# floored at this value. Increase for a looser blob.
BLOB_RADIUS = 0.03
# BLOB_MARGIN: additional cells beyond the core blob where opacity
# fades from 1.0 to 0.0 (soft boundary falloff).
BLOB_MARGIN_CELLS = 3
def _build_path_mask(self, path_points: np.ndarray):
"""Build a 3D float opacity grid from path sample points.
The goal is to cut out the empty void where there is absolutely
no training data, while keeping everything that is even remotely
near any data or path as one continuous cloud. The blob is NOT
meant to be a tight segmentation β it should be generous.
Steps:
1. Compute adaptive radius from data density (median NN Γ 1.5,
floored at BLOB_RADIUS).
2. Mark core cells around each path point.
3. If the core has multiple disconnected components, dilate
until they merge into one connected blob.
4. Add soft opacity margin at the boundary.
Args:
path_points: (M, 3) densely sampled points along semantic paths.
"""
from scipy.ndimage import distance_transform_edt, label, binary_dilation
res = self.BLOB_RESOLUTION
self._mask_res = res
pp = np.asarray(path_points, dtype=np.float32)
# Normalize path points to [0, 1] per axis
norm = np.zeros_like(pp)
for a in range(3):
if self.span[a] > 0:
norm[:, a] = (pp[:, a] - self.axis_min[a]) / self.span[a]
# Adaptive radius: median nearest-neighbor distance Γ 1.5
if len(norm) > 1:
sample_idx = np.random.default_rng(0).choice(
len(norm), min(500, len(norm)), replace=False
)
sample = norm[sample_idx]
from scipy.spatial import cKDTree
tree = cKDTree(sample)
dists, _ = tree.query(sample, k=2)
nn_dists = dists[:, 1]
adaptive_r = float(np.median(nn_dists)) * 1.5
radius_frac = max(adaptive_r, self.BLOB_RADIUS)
else:
radius_frac = self.BLOB_RADIUS
# Core boolean mask
core = np.zeros((res, res, res), dtype=bool)
r_cells = int(np.ceil(radius_frac * (res - 1)))
for p in range(len(norm)):
ci = int(round(norm[p, 0] * (res - 1)))
cj = int(round(norm[p, 1] * (res - 1)))
ck = int(round(norm[p, 2] * (res - 1)))
i0, i1 = max(0, ci - r_cells), min(res, ci + r_cells + 1)
j0, j1 = max(0, cj - r_cells), min(res, cj + r_cells + 1)
k0, k1 = max(0, ck - r_cells), min(res, ck + r_cells + 1)
core[i0:i1, j0:j1, k0:k1] = True
# Ensure one connected component β dilate until all islands merge
labeled, n_components = label(core)
max_dilations = res // 2 # safety cap
dilations = 0
while n_components > 1 and dilations < max_dilations:
core = binary_dilation(core)
labeled, n_components = label(core)
dilations += 1
# Build opacity grid: core=1.0, margin=falloff, outside=0.0
margin = self.BLOB_MARGIN_CELLS
opacity = np.zeros((res, res, res), dtype=np.float32)
opacity[core] = 1.0
if margin > 0:
dist = distance_transform_edt(~core).astype(np.float32)
margin_mask = (dist > 0) & (dist <= margin)
opacity[margin_mask] = 1.0 - dist[margin_mask] / (margin + 1)
self._path_mask = core
self._blob_opacity = opacity
self._path_mask_norm = norm
def _sample_blob_opacity(self, x, y, z) -> float:
"""Sample the blob opacity at a world-space point."""
if self._blob_opacity is None:
return 1.0
r = self._mask_res
nx = (x - self.axis_min[0]) / self.span[0] if self.span[0] > 0 else 0.5
ny = (y - self.axis_min[1]) / self.span[1] if self.span[1] > 0 else 0.5
nz = (z - self.axis_min[2]) / self.span[2] if self.span[2] > 0 else 0.5
ix = max(0, min(r - 1, int(round(nx * (r - 1)))))
iy = max(0, min(r - 1, int(round(ny * (r - 1)))))
iz = max(0, min(r - 1, int(round(nz * (r - 1)))))
return float(self._blob_opacity[ix, iy, iz])
def _point_in_blob_world(self, x, y, z):
"""Check if a world-space point is inside the path blob (core or margin)."""
if self._blob_opacity is None:
return True
return self._sample_blob_opacity(x, y, z) > 0.0
def _check_outside_blob_batch(self, positions: np.ndarray) -> np.ndarray:
"""Vectorized check: returns boolean mask of particles outside the blob."""
r = self._mask_res
norm = np.zeros_like(positions)
for a in range(3):
if self.span[a] > 0:
norm[:, a] = (positions[:, a] - self.axis_min[a]) / self.span[a]
# Convert to grid indices
ix = np.clip(np.round(norm[:, 0] * (r - 1)).astype(np.int32), 0, r - 1)
iy = np.clip(np.round(norm[:, 1] * (r - 1)).astype(np.int32), 0, r - 1)
iz = np.clip(np.round(norm[:, 2] * (r - 1)).astype(np.int32), 0, r - 1)
return self._blob_opacity[ix, iy, iz] <= 0.0
def _init_lattice(self):
"""Initialize particles, constrained to path blob if available.
Particles spawned in the margin zone get a baked blob_alpha < 1.0.
"""
margin = 0.05
g = self.particle_grid
self.blob_alpha = np.ones(self.particle_count, dtype=np.float32)
if self._blob_opacity is None:
# Original bounding-box lattice
idx = 0
for i in range(g):
for j in range(g):
for k in range(g):
fx = i / (g - 1) if g > 1 else 0.5
fy = j / (g - 1) if g > 1 else 0.5
fz = k / (g - 1) if g > 1 else 0.5
self.pos[idx, 0] = self.axis_min[0] + (margin + fx * (1 - 2 * margin)) * self.span[0]
self.pos[idx, 1] = self.axis_min[1] + (margin + fy * (1 - 2 * margin)) * self.span[1]
self.pos[idx, 2] = self.axis_min[2] + (margin + fz * (1 - 2 * margin)) * self.span[2]
self.age[idx] = 0
idx += 1
else:
# Blob-constrained: uniform random sampling inside core + margin
idx = 0
rng = np.random.default_rng(42)
batch = max(self.particle_count * 4, 10000)
while idx < self.particle_count:
candidates = np.empty((batch, 3), dtype=np.float32)
for a in range(3):
lo = self.axis_min[a] + margin * self.span[a]
hi = self.axis_max[a] - margin * self.span[a]
candidates[:, a] = rng.uniform(lo, hi, batch).astype(np.float32)
for c in range(len(candidates)):
if idx >= self.particle_count:
break
x, y, z = candidates[c]
opa = self._sample_blob_opacity(x, y, z)
if opa > 0.0:
self.pos[idx] = candidates[c]
self.blob_alpha[idx] = opa
self.age[idx] = 0
idx += 1
def _dry_integrate(self, steps: int):
"""Pre-integrate without recording, to break lattice regularity.
Matches Android's dryIntegrate(): advects and wraps only,
does NOT increment age (ages are randomized after).
"""
for _ in range(steps):
velocities = self.sample_velocity_batch(self.pos)
self.pos += velocities * self.DT
self._wrap_all()
def sample_velocity(self, x: float, y: float, z: float) -> np.ndarray:
"""Trilinear interpolation on the velocity grid.
Ported from FlowFieldSystem.java VelocityField.sample().
"""
G = self.grid_size
# Normalize to grid coordinates [0, G-1]
nx = (x - self.axis_min[0]) / self.span[0] * (G - 1) if self.span[0] > 0 else 0
ny = (y - self.axis_min[1]) / self.span[1] * (G - 1) if self.span[1] > 0 else 0
nz = (z - self.axis_min[2]) / self.span[2] * (G - 1) if self.span[2] > 0 else 0
ix = int(np.floor(nx))
iy = int(np.floor(ny))
iz = int(np.floor(nz))
tx = nx - ix
ty = ny - iy
tz = nz - iz
ix = np.clip(ix, 0, G - 2)
iy = np.clip(iy, 0, G - 2)
iz = np.clip(iz, 0, G - 2)
result = np.zeros(3, dtype=np.float32)
for dx in range(2):
for dy in range(2):
for dz in range(2):
w = ((1 - tx) if dx == 0 else tx) * \
((1 - ty) if dy == 0 else ty) * \
((1 - tz) if dz == 0 else tz)
result += w * self.velocity_grid[ix + dx, iy + dy, iz + dz]
return result
def sample_velocity_batch(self, positions: np.ndarray,
out: Optional[np.ndarray] = None) -> np.ndarray:
"""Trilinear interpolation for all particles using scipy's C backend.
Args:
positions: (N, 3) array of particle positions.
out: Optional pre-allocated (N, 3) output buffer.
Returns:
(N, 3) array of velocities.
"""
from scipy.ndimage import map_coordinates
G = self.grid_size
N = len(positions)
if out is not None and out.shape == (N, 3):
result = out
else:
result = np.zeros((N, 3), dtype=np.float32)
# Normalize to grid coordinates (reuse buffer if possible)
if N == self.particle_count:
normalized = self._buf_normalized
else:
normalized = np.zeros_like(positions)
for a in range(3):
if self.span[a] > 0:
normalized[:, a] = (positions[:, a] - self.axis_min[a]) / self.span[a] * (G - 1)
# scipy's map_coordinates expects (ndim, N_points) coordinate array
coords = normalized.T # (3, N) β no copy, just transpose view
# Interpolate each velocity component via C-implemented trilinear
for c in range(3):
result[:, c] = map_coordinates(
self.velocity_grid[:, :, :, c], coords,
order=1, mode='nearest',
)
return result
def _wrap_all(self):
"""Apply periodic wrapping to all particles."""
for a in range(3):
if self.span[a] <= 0:
continue
dist = self.pos[:, a] - self.axis_min[a]
dist = dist % self.span[a]
self.pos[:, a] = self.axis_min[a] + dist
def _respawn(self, indices: np.ndarray):
"""Respawn particles at their pre-integrated origin positions.
Matches Android: age[i] = 0; pos[i] = origPos[i].
"""
self.pos[indices] = self.orig_pos[indices]
self.age[indices] = 0
def step(self, dt_scale: float = 1.0) -> Tuple[np.ndarray, np.ndarray, np.ndarray, np.ndarray]:
"""Advance all particles by one frame.
Uses pre-allocated buffers to avoid per-frame memory allocation.
Args:
dt_scale: Multiplier for the time step (1.0 = normal 60 Hz frame).
Use >1 to compensate for lower frame rates.
Returns:
(positions, colors, alphas, speeds) β all (N, ...) arrays.
positions is a copy; colors/alphas/speeds are internal buffers
valid until the next step() call.
"""
vel = self._buf_velocities
speeds = self._buf_speeds
colors = self._buf_colors
alphas = self._buf_alphas
# Compute velocities into pre-allocated buffer
self.sample_velocity_batch(self.pos, out=vel)
# Compute speeds without allocating new array
np.einsum('ij,ij->i', vel, vel, out=speeds)
np.sqrt(speeds, out=speeds)
# Advect (dt_scale compensates for variable frame rate)
self.pos += vel * (self.DT * self.speed_multiplier * dt_scale)
self._wrap_all()
# Kill particles that escaped the blob (vectorized check)
if self._blob_opacity is not None and self.blob_enabled:
escaped = self._check_outside_blob_batch(self.pos)
if np.any(escaped):
self.age[escaped] = self.LIFESPAN # force respawn
# Age and respawn
self.age += 1
expired = self.age >= self.LIFESPAN
if np.any(expired):
self._respawn(np.where(expired)[0])
# Speed-based colors (Turbo colormap) into pre-allocated buffer
max_speed = speeds.max() if speeds.max() > 0 else 1.0
turbo_colormap(speeds / max_speed, out=colors)
# Alpha based on age (fade in/out) into pre-allocated buffer
age_frac = self.age.astype(np.float32) / self.LIFESPAN
alphas[:] = 1.0
fade_in = age_frac < 0.1
alphas[fade_in] = age_frac[fade_in] / 0.1
fade_out = age_frac > 0.8
alphas[fade_out] = (1.0 - age_frac[fade_out]) / 0.2
np.clip(alphas, 0, 1, out=alphas)
alphas *= self.blob_alpha
# Copy positions (renderer needs stable reference)
np.copyto(self._buf_pos_out, self.pos)
return self._buf_pos_out, colors, alphas, speeds
def is_outside_blob(self, x, y, z) -> bool:
"""Check if a world-space point is outside the path blob."""
return self._path_mask is not None and not self._point_in_blob_world(x, y, z)
def get_blob_surface_points(self) -> Optional[np.ndarray]:
"""Return world-space points on the blob surface for debug viz.
Samples all mask-True cells and returns their centres.
"""
if self._path_mask is None:
return None
r = self._mask_res
indices = np.argwhere(self._path_mask) # (N, 3) of (i,j,k)
if len(indices) == 0:
return None
# Convert grid indices to world coords
pts = np.zeros((len(indices), 3), dtype=np.float32)
for a in range(3):
pts[:, a] = self.axis_min[a] + (indices[:, a] / (r - 1)) * self.span[a]
return pts
def advance_ball(self, dt_scale: float = 1.0) -> np.ndarray:
"""Advance the ball probe by one step along the flow field.
Uses 0.8 * DT for slower movement (matching Android's dtSlow).
Decelerates heavily when outside the path blob.
Args:
dt_scale: Multiplier for the time step (1.0 = normal 60 Hz frame).
Returns:
New ball position (3,) array.
"""
v = self.sample_velocity(*self.ball_pos)
dt_slow = self.DT * 0.8 * self.speed_multiplier * dt_scale
# Slow down to 10% speed when outside blob
if self.is_outside_blob(*self.ball_pos):
dt_slow *= 0.1
self.ball_pos = self.ball_pos + v * dt_slow
# Clamp to domain
self.ball_pos = np.clip(self.ball_pos, self.axis_min, self.axis_max)
# Update trail (max 100 points, matching Android MAX_TRAIL)
self.ball_trail.append(self.ball_pos.copy())
if len(self.ball_trail) > 100:
self.ball_trail.pop(0)
return self.ball_pos.copy()
def set_ball_position(self, x: float, y: float, z: float):
"""Set ball position manually (from slider interaction)."""
self.ball_pos = np.array([x, y, z], dtype=np.float32)
def set_particle_grid(self, new_grid: int):
"""Reinitialize particles with a new grid resolution."""
self.particle_grid = new_grid
self.particle_count = new_grid ** 3
N = self.particle_count
self.pos = np.zeros((N, 3), dtype=np.float32)
self.age = np.zeros(N, dtype=np.int32)
# Reallocate step() buffers for new particle count
self._buf_velocities = np.zeros((N, 3), dtype=np.float32)
self._buf_speeds = np.zeros(N, dtype=np.float32)
self._buf_colors = np.zeros((N, 3), dtype=np.float32)
self._buf_alphas = np.ones(N, dtype=np.float32)
self._buf_pos_out = np.zeros((N, 3), dtype=np.float32)
self._buf_normalized = np.zeros((N, 3), dtype=np.float32)
self._init_lattice()
self.orig_pos = self.pos.copy() # save BEFORE pre-integration
self._dry_integrate(self.PRE_AGE)
if self._blob_opacity is not None and self.blob_enabled:
for i in range(self.particle_count):
if not self._point_in_blob_world(*self.pos[i]):
self.pos[i] = self.orig_pos[i]
self.age = np.random.randint(0, self.LIFESPAN, self.particle_count, dtype=np.int32)
def set_path_points(self, path_points: np.ndarray):
"""Update the path mask and reinitialize particles."""
if path_points is not None and len(path_points) >= 2:
self._build_path_mask(path_points)
else:
self._path_mask = None
self._blob_opacity = None
# Reinitialize with current grid size
self.pos = np.zeros((self.particle_count, 3), dtype=np.float32)
self.age = np.zeros(self.particle_count, dtype=np.int32)
self._init_lattice()
self.orig_pos = self.pos.copy() # save BEFORE pre-integration
self._dry_integrate(self.PRE_AGE)
if self._blob_opacity is not None and self.blob_enabled:
for i in range(self.particle_count):
if not self._point_in_blob_world(*self.pos[i]):
self.pos[i] = self.orig_pos[i]
self.age = np.random.randint(0, self.LIFESPAN, self.particle_count, dtype=np.int32)
def start_ball_flow(self):
"""Start ball following the flow field."""
self.ball_flowing = True
self.ball_trail.clear()
self.ball_trail.append(self.ball_pos.copy())
def stop_ball_flow(self):
"""Stop ball following the flow field."""
self.ball_flowing = False
def build_score_grid(self, data_points: np.ndarray, data_scores: np.ndarray):
"""Precompute a 3D score grid for fast particle-score lookup.
Each grid cell gets the score of the nearest data point.
Uses the same grid resolution as the velocity field.
Args:
data_points: (M, 3) data point positions.
data_scores: (M,) score values per data point.
"""
G = self.grid_size
# Build grid cell centers in world coords
grid_coords = np.zeros((G, G, G, 3), dtype=np.float32)
for a in range(3):
linspace = np.linspace(self.axis_min[a], self.axis_max[a], G)
if a == 0:
grid_coords[:, :, :, 0] = linspace[:, None, None]
elif a == 1:
grid_coords[:, :, :, 1] = linspace[None, :, None]
else:
grid_coords[:, :, :, 2] = linspace[None, None, :]
# Flatten to (GΒ³, 3) and find nearest data point for each cell
flat = grid_coords.reshape(-1, 3)
# Chunked to avoid huge memory: process 1000 cells at a time
score_flat = np.zeros(len(flat), dtype=np.float32)
chunk = 2000
for i in range(0, len(flat), chunk):
batch = flat[i:i + chunk]
dists = np.linalg.norm(batch[:, None, :] - data_points[None, :, :], axis=2)
nearest = np.argmin(dists, axis=1)
score_flat[i:i + chunk] = data_scores[nearest]
self._score_grid = score_flat.reshape(G, G, G)
def _sample_scalar_grid(self, grid: np.ndarray,
positions: np.ndarray) -> np.ndarray:
"""Trilinear interpolation on a scalar (G,G,G) grid using scipy C backend."""
from scipy.ndimage import map_coordinates
normalized = np.zeros_like(positions)
for a in range(3):
if self.span[a] > 0:
normalized[:, a] = ((positions[:, a] - self.axis_min[a])
/ self.span[a] * (grid.shape[0] - 1))
return map_coordinates(grid, normalized.T, order=1, mode='nearest'
).astype(np.float32)
def sample_score_batch(self, positions: np.ndarray) -> np.ndarray:
"""Sample precomputed score grid at particle positions.
Returns (N,) interpolated score values, or 0.5 if no score grid.
"""
if self._score_grid is None:
return np.full(len(positions), 0.5, dtype=np.float32)
return self._sample_scalar_grid(self._score_grid, positions)
def sample_confidence_batch(self, positions: np.ndarray) -> np.ndarray:
"""Sample confidence grid at particle positions.
Returns (N,) values in [0, 1] where 1 = high confidence.
Returns all-ones if no confidence grid.
"""
if self._confidence_grid is None:
return np.ones(len(positions), dtype=np.float32)
return self._sample_scalar_grid(self._confidence_grid, positions)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# Attractor detection
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# Bump this version when the attractor detection algorithm changes
# to auto-invalidate cached results.
_ATTRACTOR_CACHE_VERSION = 18
@staticmethod
def _sensitivity_params(s: float) -> dict:
"""Map sensitivity (0.0β1.0) to attractor detection parameters.
At s=0.7 (default) the values match the hardcoded defaults.
Lower sensitivity shrinks large basins first (via max_basin_frac
and basin_thresh_pct), then removes weak attractors (peak_floor_pct).
"""
s = max(0.0, min(1.0, s))
# Interpolation helper: s=0 β val_lo, s=0.7 β val_mid, s=1.0 β val_hi
def _lerp(val_lo, val_mid, val_hi):
if s <= 0.7:
t = s / 0.7
return val_lo + t * (val_mid - val_lo)
else:
t = (s - 0.7) / 0.3
return val_mid + t * (val_hi - val_mid)
# max_basin_frac uses a power curve for steeper drop at low
# sensitivity β large basins shrink first, small ones are spared.
t_basin = s / 0.7 if s <= 0.7 else 1.0 + (s - 0.7) / 0.3
if s <= 0.7:
# Quadratic: drops fast at first, then flattens near default
max_bf = 0.002 + (0.02 - 0.002) * (s / 0.7) ** 1.5
else:
max_bf = 0.02 + (0.05 - 0.02) * ((s - 0.7) / 0.3)
return {
'peak_floor_pct': _lerp(0.18, 0.05, 0.01),
'basin_thresh_pct': _lerp(0.70, 0.35, 0.12),
'max_basin_frac': max_bf,
'speed_gate_mult': _lerp(1.2, 2.0, 4.0),
}
def _attractor_fingerprint(self, sensitivity: float = 0.7) -> str:
"""Build a fingerprint from the velocity grid + sensitivity."""
import hashlib
h = hashlib.sha256()
h.update(f"v{self._ATTRACTOR_CACHE_VERSION}".encode())
h.update(self.velocity_grid.tobytes()[:4096]) # first 4KB is enough
h.update(f"|G={self.grid_size}|s={sensitivity:.3f}|".encode())
return h.hexdigest()[:16]
def save_attractors(self, path: str, attractors: list, sensitivity: float = 0.7):
"""Cache attractor results to disk as .npz for instant reload.
Args:
path: Base path (without extension). Creates {path}_attractors.npz.
"""
import os
os.makedirs(os.path.dirname(path) if os.path.dirname(path) else '.', exist_ok=True)
npz_path = path + "_attractors.npz"
arrays = {}
meta_list = []
for i, att in enumerate(attractors):
arrays[f"basin_{i}"] = att['basin_mask']
arrays[f"position_{i}"] = att['position']
meta_list.append({
'strength': att['strength'],
'divergence': att['divergence'],
'basin_size': att['basin_size'],
'basin_fraction': att['basin_fraction'],
'mean_score': att['mean_score'],
})
import json as _json
meta_obj = {
'attractors': meta_list,
'fingerprint': self._attractor_fingerprint(sensitivity),
}
arrays['_meta'] = np.array([_json.dumps(meta_obj)], dtype=object)
np.savez_compressed(npz_path, **arrays)
print(f"[ATTRACTORS] Cached {len(attractors)} attractor(s) to {npz_path}")
def load_attractors(self, path: str, sensitivity: float = 0.7) -> Optional[list]:
"""Load cached attractor results from disk.
Validates the fingerprint against the current velocity grid so
stale caches are automatically discarded when data changes.
Args:
path: Base path (without extension). Looks for {path}_attractors.npz.
Returns:
List of attractor dicts, or None if cache missing/stale.
"""
npz_path = path + "_attractors.npz"
import os
if not os.path.exists(npz_path):
return None
try:
data = np.load(npz_path, allow_pickle=True)
import json as _json
meta_obj = _json.loads(str(data['_meta'][0]))
# Support both old format (list) and new format (dict with fingerprint)
if isinstance(meta_obj, list):
# Old cache without fingerprint β discard
print("[ATTRACTORS] Old cache format without fingerprint β recomputing")
return None
meta_list = meta_obj['attractors']
cached_fp = meta_obj.get('fingerprint', '')
# Validate fingerprint
current_fp = self._attractor_fingerprint(sensitivity)
if cached_fp != current_fp:
print(f"[ATTRACTORS] Cache fingerprint mismatch β recomputing")
return None
attractors = []
for i, meta in enumerate(meta_list):
attractors.append({
'basin_mask': data[f'basin_{i}'],
'position': data[f'position_{i}'],
'strength': meta['strength'],
'divergence': meta['divergence'],
'basin_size': meta['basin_size'],
'basin_fraction': meta['basin_fraction'],
'mean_score': meta['mean_score'],
})
print(f"[ATTRACTORS] Loaded {len(attractors)} cached attractor(s) from {npz_path}")
return attractors
except Exception as e:
print(f"[ATTRACTORS] Cache load failed: {e}")
return None
def find_attractors(self, score_grid: Optional[np.ndarray] = None,
min_confidence: float = 0.3,
sim_steps: int = 800,
sample_interval: int = 8,
cache_path: Optional[str] = None,
sensitivity: float = 0.7) -> list:
"""Detect flow attractors using residence density + local peak finding.
Three-stage approach:
1. Simulate particles with renderer-compatible rules (wrapping,
blob escape) but LONGER lifespan to reduce spawn bias.
Accumulate occupancy = where particles spend time.
2. Find LOCAL maxima in occupancy (not global threshold) so
weaker attractors aren't erased by dominant ones.
3. Validate each peak with negative divergence (field structure)
so we're not just finding traffic jams.
basin_mask = high-occupancy region around each peak (what gets drawn).
Args:
score_grid: Optional (G,G,G) score values for basin scoring.
min_confidence: Minimum confidence to consider a cell.
cache_path: If provided, try loading from / saving to this path.
sim_steps: Total simulation steps.
sample_interval: Sample occupancy every N steps.
sensitivity: 0.0β1.0 controls attractor count & basin size.
Default 0.6 matches hardcoded defaults.
Lower = fewer, smaller basins (large ones shrink first).
Higher = more, larger basins.
"""
# ββ Derive parameters from sensitivity ββ
sp = self._sensitivity_params(sensitivity)
# ββ Try loading from cache first ββ
if cache_path is not None:
cached = self.load_attractors(cache_path, sensitivity)
if cached is not None:
return cached
from scipy import ndimage
from scipy.ndimage import maximum_filter, label
G = self.grid_size
vg = self.velocity_grid
# ββ Blob mask resampled to velocity grid ββ
# Use the CORE mask (not the soft-margin opacity) so attractor
# basins don't expand into the fade-out margin zone.
blob_valid = np.ones((G, G, G), dtype=bool)
if self._path_mask is not None:
res = self._path_mask.shape[0]
bi = np.round(np.arange(G) / (G - 1) * (res - 1)).astype(int)
bi = np.clip(bi, 0, res - 1)
blob_valid = self._path_mask[np.ix_(bi, bi, bi)]
conf = self._confidence_grid if self._confidence_grid is not None \
else np.ones((G, G, G), dtype=np.float32)
valid = (conf >= min_confidence) & blob_valid
if np.sum(valid) < 4:
return []
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 1: Simulate particles, measure occupancy
# Uses renderer rules but LONGER lifespan (5Γ normal)
# to let particles reach distant attractors.
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
LONG_LIFESPAN = self.LIFESPAN * 5 # 285 frames vs 57
N_test = min(20000, max(5000, int(np.sum(valid)) * 8))
rng = np.random.default_rng(42)
# Seed inside blob
positions = np.zeros((N_test, 3), dtype=np.float32)
idx_p = 0
batch = 2000
while idx_p < N_test:
candidates = np.zeros((batch, 3), dtype=np.float32)
for a in range(3):
candidates[:, a] = rng.uniform(
self.axis_min[a], self.axis_max[a], batch
).astype(np.float32)
for c in range(len(candidates)):
if idx_p >= N_test:
break
if self._point_in_blob_world(*candidates[c]):
positions[idx_p] = candidates[c]
idx_p += 1
# Pre-integrate
for _ in range(self.PRE_AGE):
vel = self.sample_velocity_batch(positions)
positions += vel * self.DT
for a in range(3):
if self.span[a] > 0:
positions[:, a] = self.axis_min[a] + \
(positions[:, a] - self.axis_min[a]) % self.span[a]
orig_pos = positions.copy()
ages = rng.integers(0, LONG_LIFESPAN, N_test, dtype=np.int32)
# Run simulation, accumulate occupancy
occupancy = np.zeros((G, G, G), dtype=np.float32)
n_samples = 0
warmup = 150 # let particles spread out before counting
for step_i in range(sim_steps):
vel = self.sample_velocity_batch(positions)
positions += vel * self.DT
# Wrap at boundaries (same as MDN)
for a in range(3):
if self.span[a] > 0:
positions[:, a] = self.axis_min[a] + \
(positions[:, a] - self.axis_min[a]) % self.span[a]
# Blob escape β force respawn (same as MDN)
if self._blob_opacity is not None:
escaped = self._check_outside_blob_batch(positions)
if np.any(escaped):
ages[escaped] = LONG_LIFESPAN
# Age and respawn with LONGER lifespan
ages += 1
expired = ages >= LONG_LIFESPAN
if np.any(expired):
exp_idx = np.where(expired)[0]
positions[exp_idx] = orig_pos[exp_idx]
ages[exp_idx] = 0
# Sample occupancy after warmup
if step_i >= warmup and step_i % sample_interval == 0:
gi = np.zeros((N_test, 3), dtype=int)
for a in range(3):
gi[:, a] = np.clip(
((positions[:, a] - self.axis_min[a])
/ self.span[a] * (G - 1)).astype(int),
0, G - 1)
np.add.at(occupancy, (gi[:, 0], gi[:, 1], gi[:, 2]), 1.0)
n_samples += 1
if n_samples == 0:
return []
occupancy /= n_samples
occupancy = ndimage.gaussian_filter(occupancy, sigma=0.8)
occupancy[~valid] = 0.0
# Speed grid
speed = np.linalg.norm(vg, axis=3)
speed_ref = max(float(np.percentile(speed[valid], 90)), 1e-8)
speed_factor = 1.0 / (1.0 + speed / speed_ref)
# Divergence (for validation + info)
dvx_dx = np.gradient(vg[:, :, :, 0], axis=0)
dvy_dy = np.gradient(vg[:, :, :, 1], axis=1)
dvz_dz = np.gradient(vg[:, :, :, 2], axis=2)
divergence = dvx_dx + dvy_dy + dvz_dz
# Combined residence score
residence_score = occupancy * speed_factor
residence_score[~valid] = 0.0
rs_max = float(np.max(residence_score))
if rs_max < 1e-10:
return []
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 2: Find LOCAL maxima (not global threshold)
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
neighborhood = 5
local_max = maximum_filter(residence_score, size=neighborhood)
is_peak = (residence_score == local_max) & (residence_score > 0)
# Absolute floor: peak_floor_pct of max OR 80th percentile (whichever lower)
abs_floor = min(
rs_max * sp['peak_floor_pct'],
float(np.percentile(residence_score[valid], 80))
)
is_peak = is_peak & (residence_score > abs_floor)
peak_coords = np.argwhere(is_peak)
if len(peak_coords) == 0:
return []
peak_scores = np.array([residence_score[tuple(p)] for p in peak_coords])
order = np.argsort(-peak_scores)
peak_coords = peak_coords[order]
peak_scores = peak_scores[order]
# Reject peaks where the local flow is not actually converging.
# A real attractor must have negative divergence in its neighborhood
# (not just at the exact peak cell, which can be noisy).
# Smooth divergence and require neighborhood mean < 0.
div_smooth = ndimage.gaussian_filter(divergence, sigma=1.5)
real_peaks = []
for pc in peak_coords:
pi, pj, pk = int(pc[0]), int(pc[1]), int(pc[2])
# 3Γ3Γ3 neighborhood mean divergence
sl = tuple(slice(max(0, c - 1), min(G, c + 2)) for c in (pi, pj, pk))
neigh_div = float(np.mean(div_smooth[sl]))
if neigh_div < 0:
real_peaks.append(pc)
peak_coords = np.array(real_peaks) if real_peaks else np.empty((0, 3), dtype=int)
peak_scores = np.array([residence_score[tuple(p)] for p in peak_coords]) \
if len(peak_coords) > 0 else np.array([])
if len(peak_coords) == 0:
return []
# Merge peaks within 3 cells
merge_dist = 3.0
kept = []
for pc in peak_coords:
too_close = False
for kc in kept:
if np.linalg.norm(pc.astype(float) - kc.astype(float)) < merge_dist:
too_close = True
break
if not too_close:
kept.append(pc)
peak_coords = np.array(kept) if kept else np.empty((0, 3), dtype=int)
if len(peak_coords) == 0:
return []
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 3: Build basins using divergence-modulated expansion
#
# Key insight: "parking lots" (real sinks) have negative
# divergence, while "rivers" (slow flow) have ~zero divergence.
# Instead of separate hacks (absolute floor, divergence penalty),
# we build a SINGLE basin expansion score that naturally gives
# generous basins to real sinks and chokes off rivers:
#
# convergence = clamp(-div / div_ref, 0, 1)
# basin_score = residence_score * (0.1 + 0.9 * convergence)
#
# Near a sink: convergenceβ1 β basin_score β residence_score
# In a river: convergenceβ0 β basin_score β 0.1 * residence
# Near a source: convergence=0 β basin_score β 0.1 * residence
#
# Then flood-fill each peak's basin in basin_score space.
# Rivers self-limit because their basin_score is 10Γ lower.
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# Normalized divergence: scale so typical negative div β ~1.0
div_ref = max(float(np.percentile(np.abs(divergence[valid]), 90)), 1e-8)
convergence = np.clip(-divergence / div_ref, 0.0, 1.0) # 1=sink, 0=source/neutral
# Basin expansion score: occupancy weighted by convergence
basin_score = residence_score * (0.1 + 0.9 * convergence)
basin_score[~valid] = 0.0
bs_max = float(np.max(basin_score))
if bs_max < 1e-10:
bs_max = rs_max # fallback
# Absolute floor: median of valid basin_scores (or 8% of max).
# This prevents shallow hills from claiming huge territories.
# The local percentage handles sharp peaks; the floor handles flat ones.
valid_bs = basin_score[valid]
abs_basin_floor = max(
float(np.median(valid_bs)),
bs_max * 0.08,
)
attractors_out = []
n_valid = int(np.sum(valid))
claimed = np.zeros((G, G, G), dtype=bool)
for pc in peak_coords:
pi, pj, pk = int(pc[0]), int(pc[1]), int(pc[2])
peak_val = float(residence_score[pi, pj, pk])
peak_bs = float(basin_score[pi, pj, pk])
peak_div = float(divergence[pi, pj, pk])
# ββ Per-attractor speed gate ββ
# Basin mesh = where particles SETTLE. Only cells with speed
# close to the peak's own (slow) speed belong in the basin.
# Cells much faster are approach corridors, not settling zones.
# Gate = 2Γ peak neighborhood speed, floored so we don't
# choke basins where the entire field is uniformly slow.
sl = tuple(slice(max(0, c - 1), min(G, c + 2)) for c in (pi, pj, pk))
peak_speed = float(np.mean(speed[sl])) # 3Γ3Γ3 neighborhood avg
speed_gate = max(peak_speed * sp['speed_gate_mult'], speed_ref * 0.08)
basin_slow = speed <= speed_gate
# Basin threshold: HIGHER of local percentage and absolute floor.
# - Sharp peaks: local 20% is high β reasonable basin size
# - Shallow hills: local 20% is tiny β abs floor kicks in β tight basin
local_thresh = max(peak_bs * sp['basin_thresh_pct'], abs_basin_floor)
# Adaptive tightening: if basin exceeds 2% of valid cells,
# raise threshold until it fits. This prevents flat, uniformly
# convergent flow fields from producing basins that swallow
# half the grid.
max_basin_cells = max(int(n_valid * sp['max_basin_frac']), 20)
for _tighten in range(8):
basin_candidates = (
(basin_score >= local_thresh) & valid
& (~claimed) & basin_slow
)
basin_labeled, _ = label(basin_candidates)
peak_label = basin_labeled[pi, pj, pk]
if peak_label == 0:
break
basin_mask = basin_labeled == peak_label
basin_size = int(np.sum(basin_mask))
if basin_size <= max_basin_cells:
break
# Tighten: raise threshold toward peak value
local_thresh = local_thresh + (peak_bs - local_thresh) * 0.3
if peak_label == 0:
continue
basin_size = int(np.sum(basin_mask))
if basin_size < 5:
continue
claimed |= basin_mask
position = np.array([
self.axis_min[0] + pi / (G - 1) * self.span[0],
self.axis_min[1] + pj / (G - 1) * self.span[1],
self.axis_min[2] + pk / (G - 1) * self.span[2],
], dtype=np.float32)
basin_fraction = basin_size / n_valid if n_valid > 0 else 0.0
mean_score = None
if score_grid is not None and score_grid.shape == (G, G, G):
bs = score_grid[basin_mask]
if len(bs) > 0:
mean_score = float(np.mean(bs))
# Strength from basin_score (already incorporates divergence)
attractors_out.append({
'position': position,
'strength': float(peak_bs / bs_max) if bs_max > 0 else 0.0,
'divergence': peak_div,
'basin_mask': basin_mask,
'basin_size': basin_size,
'basin_fraction': basin_fraction,
'mean_score': mean_score,
})
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# STAGE 4: Vortex attractor detection (supplementary)
#
# Occupancy-based detection (stages 1-3) misses vortex centers
# because particles ORBIT around the center rather than sitting
# on it. RBF flow fields often create vortices that are the
# true global attractors (probes get trapped there forever).
#
# Detection: find grid cells where the flow is nearly zero but
# the curl (vorticity) is high and divergence is negative
# (spiral-in). Then verify with a short probe simulation that
# a particle actually gets trapped.
# βββββββββββββββββββββββββββββββββββββββββββββββββββ
# Curl magnitude
dvz_dy = np.gradient(vg[:, :, :, 2], axis=1)
dvy_dz = np.gradient(vg[:, :, :, 1], axis=2)
dvx_dz = np.gradient(vg[:, :, :, 0], axis=2)
dvz_dx = np.gradient(vg[:, :, :, 2], axis=0)
dvy_dx = np.gradient(vg[:, :, :, 1], axis=0)
dvx_dy = np.gradient(vg[:, :, :, 0], axis=1)
curl_mag = np.sqrt(
(dvz_dy - dvy_dz) ** 2 +
(dvx_dz - dvz_dx) ** 2 +
(dvy_dx - dvx_dy) ** 2
)
# Vortex score: high curl, low speed, negative divergence
speed_30 = max(float(np.percentile(speed[valid], 30)), 1e-8)
slow_mask = valid & (speed < speed_30) & (divergence < 0)
vortex_score = np.zeros_like(speed)
vortex_score[slow_mask] = (
curl_mag[slow_mask] / (speed[slow_mask] + 1e-6)
* (-divergence[slow_mask])
)
if float(np.max(vortex_score)) > 0:
# Find vortex peaks
vortex_local_max = maximum_filter(vortex_score, size=5)
is_vortex = (vortex_score == vortex_local_max) & (vortex_score > 0)
vortex_peaks_arr = np.argwhere(is_vortex)
if len(vortex_peaks_arr) > 0:
vp_scores = np.array([vortex_score[tuple(p)] for p in vortex_peaks_arr])
vp_order = np.argsort(-vp_scores)
# Only consider strong vortex candidates (top 10%, at least score > 1.0)
vp_thresh = max(float(np.percentile(vp_scores, 90)), 1.0)
n_vortex_added = 0
for vpi in vp_order:
if vp_scores[vpi] < vp_thresh:
break
if n_vortex_added >= 3: # max 3 vortex attractors
break
vpc = vortex_peaks_arr[vpi]
vi, vj, vk = int(vpc[0]), int(vpc[1]), int(vpc[2])
# Skip if too close to an existing attractor (within 4 cells)
vpos_world = np.array([
self.axis_min[0] + vi / (G - 1) * self.span[0],
self.axis_min[1] + vj / (G - 1) * self.span[1],
self.axis_min[2] + vk / (G - 1) * self.span[2],
], dtype=np.float32)
too_close = False
for existing in attractors_out:
ep = existing['position']
# Convert to grid distance
edist = np.linalg.norm(
(vpos_world - ep) / self.span * (G - 1)
)
if edist < 4:
too_close = True
break
if too_close:
continue
# Verify: simulate a probe from nearby and check it gets trapped.
# "Trapped" means the probe stays confined in a small region β
# either reaching near-zero speed OR orbiting tightly (vortex).
# We check confinement by comparing the bounding box of the
# last 100 steps to the grid cell size.
cell_size = float(np.mean(self.span / (G - 1)))
confinement_radius = cell_size * 3 # trapped if last 100 steps within 3 cells
def _probe_is_trapped(start_pos, n_steps=1000):
"""Simulate probe and check if it gets confined."""
p = start_pos.copy()
history = []
for step in range(n_steps):
pv = self.sample_velocity(p[0], p[1], p[2])
ps = float(np.linalg.norm(pv))
if ps < 1e-7:
return True, p # dead stop
p = p + pv * self.DT
p = np.clip(p, self.axis_min, self.axis_max)
if step >= n_steps - 200:
history.append(p.copy())
if len(history) < 50:
return False, p
hist = np.array(history)
extent = hist.max(axis=0) - hist.min(axis=0)
max_extent = float(np.max(extent))
return max_extent < confinement_radius, p
probe_start = vpos_world.copy() + self.span / (G - 1) * 3
probe_start = np.clip(probe_start, self.axis_min, self.axis_max)
trapped, final_probe = _probe_is_trapped(probe_start)
if not trapped:
# Try from opposite side
probe_start2 = vpos_world.copy() - self.span / (G - 1) * 3
probe_start2 = np.clip(probe_start2, self.axis_min, self.axis_max)
trapped, final_probe = _probe_is_trapped(probe_start2)
if not trapped:
continue
# Use the center of the final orbit as the attractor position
# (run another short sim to get the centroid)
centroid_pts = []
p = final_probe.copy()
for _ in range(200):
pv = self.sample_velocity(p[0], p[1], p[2])
p = p + pv * self.DT
p = np.clip(p, self.axis_min, self.axis_max)
centroid_pts.append(p.copy())
final_pos = np.mean(centroid_pts, axis=0).astype(np.float32)
# Build basin using the SAME Stage 3 flood-fill logic
# so vortex basins have organic shapes, not cubes.
fi = int(np.clip(
(final_pos[0] - self.axis_min[0]) / self.span[0] * (G - 1) + 0.5,
0, G - 1))
fj = int(np.clip(
(final_pos[1] - self.axis_min[1]) / self.span[1] * (G - 1) + 0.5,
0, G - 1))
fk = int(np.clip(
(final_pos[2] - self.axis_min[2]) / self.span[2] * (G - 1) + 0.5,
0, G - 1))
# Speed gate: same as Stage 3
sl = tuple(slice(max(0, c - 1), min(G, c + 2))
for c in (fi, fj, fk))
peak_spd = float(np.mean(speed[sl]))
spd_gate = max(peak_spd * sp['speed_gate_mult'],
speed_ref * 0.08)
basin_slow = speed <= spd_gate
peak_bs_v = float(basin_score[fi, fj, fk])
local_thresh_v = max(peak_bs_v * sp['basin_thresh_pct'],
abs_basin_floor)
max_basin_cells = max(int(n_valid * sp['max_basin_frac']), 20)
basin_mask = np.zeros((G, G, G), dtype=bool)
for _tighten in range(8):
basin_candidates = (
(basin_score >= local_thresh_v) & valid
& (~claimed) & basin_slow
)
basin_labeled_v, _ = label(basin_candidates)
peak_label_v = basin_labeled_v[fi, fj, fk]
if peak_label_v == 0:
break
basin_mask = basin_labeled_v == peak_label_v
bsz = int(np.sum(basin_mask))
if bsz <= max_basin_cells:
break
local_thresh_v = local_thresh_v + (
peak_bs_v - local_thresh_v) * 0.3
basin_size = int(np.sum(basin_mask))
if basin_size < 3:
# Fallback: very small basin from nearby convergent cells
basin_mask = np.zeros((G, G, G), dtype=bool)
for di in range(-1, 2):
for dj in range(-1, 2):
for dk in range(-1, 2):
ni, nj, nk = fi + di, fj + dj, fk + dk
if 0 <= ni < G and 0 <= nj < G and 0 <= nk < G:
if (valid[ni, nj, nk]
and not claimed[ni, nj, nk]
and divergence[ni, nj, nk] < 0):
basin_mask[ni, nj, nk] = True
basin_size = int(np.sum(basin_mask))
if basin_size < 3:
continue
claimed |= basin_mask
basin_fraction = basin_size / n_valid if n_valid > 0 else 0.0
mean_score = None
if score_grid is not None and score_grid.shape == (G, G, G):
bs_vals = score_grid[basin_mask]
if len(bs_vals) > 0:
mean_score = float(np.mean(bs_vals))
# Strength: verified vortex attractors get a floor of 0.5
occ_at_vortex = float(residence_score[fi, fj, fk])
vortex_strength = max(
occ_at_vortex / rs_max if rs_max > 0 else 0.0,
0.5
)
attractors_out.append({
'position': final_pos,
'strength': vortex_strength,
'divergence': float(divergence[fi, fj, fk]),
'basin_mask': basin_mask,
'basin_size': basin_size,
'basin_fraction': basin_fraction,
'mean_score': mean_score,
})
n_vortex_added += 1
if n_vortex_added > 0:
print(f"[ATTRACTORS] Added {n_vortex_added} vortex attractor(s)")
# ββ Merge encapsulated attractors ββ
# When one attractor's bounding box is contained inside another's,
# they look like nested shells. Merge by absorbing the weaker
# one's basin into the stronger one.
merged = True
while merged:
merged = False
for i in range(len(attractors_out)):
if attractors_out[i] is None:
continue
bi = attractors_out[i]['basin_mask']
ci = np.argwhere(bi)
if len(ci) == 0:
continue
mni, mxi = ci.min(0), ci.max(0)
for j in range(len(attractors_out)):
if i == j or attractors_out[j] is None:
continue
bj = attractors_out[j]['basin_mask']
cj = np.argwhere(bj)
if len(cj) == 0:
continue
mnj, mxj = cj.min(0), cj.max(0)
# Check if j's bbox is inside i's bbox (or vice versa)
j_inside_i = np.all(mnj >= mni) and np.all(mxj <= mxi)
i_inside_j = np.all(mni >= mnj) and np.all(mxi <= mxj)
if j_inside_i or i_inside_j:
# Keep the stronger one, absorb the other's basin
si = attractors_out[i]['strength']
sj = attractors_out[j]['strength']
keep, drop = (i, j) if si >= sj else (j, i)
attractors_out[keep]['basin_mask'] = (
attractors_out[keep]['basin_mask'] |
attractors_out[drop]['basin_mask']
)
attractors_out[keep]['basin_size'] = int(
np.sum(attractors_out[keep]['basin_mask'])
)
attractors_out[keep]['basin_fraction'] = (
attractors_out[keep]['basin_size'] / n_valid
if n_valid > 0 else 0.0
)
attractors_out[drop] = None
merged = True
break
if merged:
break
attractors_out = [a for a in attractors_out if a is not None]
# ββ Probe escape validation ββ
# Drop any attractor where a probe starting at its position escapes
# beyond a threshold. Real attractors hold probes nearby; false
# positives from occupancy noise let them fly away.
cell_diag = float(np.linalg.norm(self.span / (G - 1)))
escape_thresh = cell_diag * 5 # must stay within 5 cell diagonals
validated = []
for att in attractors_out:
p = att['position'].copy().astype(np.float32)
start = p.copy()
for _ in range(500):
pv = self.sample_velocity(p[0], p[1], p[2])
if np.linalg.norm(pv) < 1e-8:
break
p = p + pv * self.DT
p = np.clip(p, self.axis_min, self.axis_max)
drift = float(np.linalg.norm(p - start))
if drift < escape_thresh:
validated.append(att)
attractors_out = validated
# ββ Probe-based convergence merge ββ
# Simulate a short probe from each attractor. If two probes end
# up at essentially the same point they are duplicate detections
# of the same convergence structure. Keep it short (300 steps) so
# we only merge genuinely redundant peaks without traversing across
# distinct basins in smooth (MDN) fields.
merge_radius = cell_diag * 3
for att in attractors_out:
p = att['position'].copy().astype(np.float32)
for _ in range(300):
pv = self.sample_velocity(p[0], p[1], p[2])
if np.linalg.norm(pv) < 1e-8:
break
p = p + pv * self.DT
p = np.clip(p, self.axis_min, self.axis_max)
att['_converged_to'] = p.copy()
merged = True
while merged:
merged = False
for i in range(len(attractors_out)):
if attractors_out[i] is None:
continue
ci = attractors_out[i]['_converged_to']
for j in range(i + 1, len(attractors_out)):
if attractors_out[j] is None:
continue
cj = attractors_out[j]['_converged_to']
dist = float(np.linalg.norm(ci - cj))
if dist < merge_radius:
si = attractors_out[i]['strength']
sj = attractors_out[j]['strength']
keep, drop = (i, j) if si >= sj else (j, i)
attractors_out[keep]['basin_mask'] = (
attractors_out[keep]['basin_mask'] |
attractors_out[drop]['basin_mask']
)
attractors_out[keep]['basin_size'] = int(
np.sum(attractors_out[keep]['basin_mask'])
)
attractors_out[keep]['basin_fraction'] = (
attractors_out[keep]['basin_size'] / n_valid
if n_valid > 0 else 0.0
)
attractors_out[drop] = None
merged = True
break
if merged:
break
attractors_out = [a for a in attractors_out if a is not None]
# Clean up temp field
for att in attractors_out:
att.pop('_converged_to', None)
# ββ Connectivity cleanup ββ
# After merges, a basin_mask may have disconnected components.
# Keep only the connected component containing the attractor center.
for att in attractors_out:
bm = att['basin_mask']
labeled_bm, n_comp = label(bm)
if n_comp <= 1:
continue
pos = att['position']
ci = int(np.clip(
(pos[0] - self.axis_min[0]) / self.span[0] * (G - 1) + 0.5,
0, G - 1))
cj = int(np.clip(
(pos[1] - self.axis_min[1]) / self.span[1] * (G - 1) + 0.5,
0, G - 1))
ck = int(np.clip(
(pos[2] - self.axis_min[2]) / self.span[2] * (G - 1) + 0.5,
0, G - 1))
center_comp = labeled_bm[ci, cj, ck]
if center_comp > 0:
att['basin_mask'] = labeled_bm == center_comp
else:
# Center not inside any component β keep largest
comp_sizes = [(c, int(np.sum(labeled_bm == c)))
for c in range(1, n_comp + 1)]
largest = max(comp_sizes, key=lambda x: x[1])[0]
att['basin_mask'] = labeled_bm == largest
att['basin_size'] = int(np.sum(att['basin_mask']))
att['basin_fraction'] = (att['basin_size'] / n_valid
if n_valid > 0 else 0.0)
# ββ Convergence-point patching ββ
# The basin is built around the occupancy peak, but probes may
# converge to a slightly different point. Patch the basin to
# include a small neighborhood of convergent cells around the
# actual convergence point so the probe rests inside the mesh.
for att in attractors_out:
p = att['position'].copy().astype(np.float32)
for _ in range(500):
pv = self.sample_velocity(p[0], p[1], p[2])
if np.linalg.norm(pv) < 1e-8:
break
p = p + pv * self.DT
p = np.clip(p, self.axis_min, self.axis_max)
# Grid index of convergence point
ei = int(np.clip(
(p[0] - self.axis_min[0]) / self.span[0] * (G - 1) + 0.5,
0, G - 1))
ej = int(np.clip(
(p[1] - self.axis_min[1]) / self.span[1] * (G - 1) + 0.5,
0, G - 1))
ek = int(np.clip(
(p[2] - self.axis_min[2]) / self.span[2] * (G - 1) + 0.5,
0, G - 1))
if not att['basin_mask'][ei, ej, ek]:
# Convergence point outside basin β add a small patch
# of convergent cells (negative divergence) around it.
for di in range(-1, 2):
for dj in range(-1, 2):
for dk in range(-1, 2):
ni = ei + di
nj = ej + dj
nk = ek + dk
if 0 <= ni < G and 0 <= nj < G and 0 <= nk < G:
if valid[ni, nj, nk] and divergence[ni, nj, nk] < 0:
att['basin_mask'][ni, nj, nk] = True
att['basin_size'] = int(np.sum(att['basin_mask']))
att['basin_fraction'] = (att['basin_size'] / n_valid
if n_valid > 0 else 0.0)
attractors_out.sort(key=lambda a: a['strength'], reverse=True)
# Cap at 8, but always keep at least the strongest one
attractors_out = attractors_out[:8]
# Guarantee at least 1 attractor: if all were filtered, take the
# strongest peak and give it a minimal basin
if not attractors_out and len(peak_coords) > 0:
pc = peak_coords[0]
pi, pj, pk = int(pc[0]), int(pc[1]), int(pc[2])
basin_mask = np.zeros((G, G, G), dtype=bool)
# 3Γ3Γ3 cube around peak
for di in range(-1, 2):
for dj in range(-1, 2):
for dk in range(-1, 2):
ni, nj, nk = pi+di, pj+dj, pk+dk
if 0 <= ni < G and 0 <= nj < G and 0 <= nk < G:
if valid[ni, nj, nk]:
basin_mask[ni, nj, nk] = True
position = np.array([
self.axis_min[0] + pi / (G - 1) * self.span[0],
self.axis_min[1] + pj / (G - 1) * self.span[1],
self.axis_min[2] + pk / (G - 1) * self.span[2],
], dtype=np.float32)
attractors_out.append({
'position': position,
'strength': 1.0,
'divergence': float(divergence[pi, pj, pk]),
'basin_mask': basin_mask,
'basin_size': int(np.sum(basin_mask)),
'basin_fraction': int(np.sum(basin_mask)) / n_valid if n_valid > 0 else 0.0,
'mean_score': None,
})
print(f"[ATTRACTORS] {N_test} particles, {sim_steps} steps "
f"(lifespan={LONG_LIFESPAN}), {n_samples} samples")
print(f"[ATTRACTORS] Occupancy max={float(np.max(occupancy)):.1f}, "
f"div_ref={div_ref:.4f}, abs_floor={abs_basin_floor:.3f}, "
f"speed_ref={speed_ref:.4f}, "
f"peaks={len(peak_coords)}, output={len(attractors_out)}")
# ββ Save to cache ββ
if cache_path is not None and attractors_out:
try:
self.save_attractors(cache_path, attractors_out, sensitivity)
except Exception as e:
print(f"[ATTRACTORS] Cache save failed: {e}")
return attractors_out
def precompute_frames(self, n_frames: int = 200) -> list:
"""Pre-compute N animation frames for efficient playback.
Returns:
List of (positions, colors, alphas) tuples.
"""
frames = []
for _ in range(n_frames):
pos, colors, alphas, speeds = self.step()
frames.append({
"positions": pos,
"colors": colors,
"alphas": alphas,
"speeds": speeds,
})
return frames
def build_flow_figure(
result,
flow_system: FlowFieldSystem,
frame_data: dict,
show_data_points: bool = True,
) -> dict:
"""Build Plotly trace data for one flow frame.
Returns a dict of trace data that can be added to a figure.
"""
from tracescope.visualization.scatter3d import CLUSTER_COLORS
positions = frame_data["positions"]
colors = frame_data["colors"]
alphas = frame_data["alphas"]
# Convert colors to Plotly format
plotly_colors = [
f"rgba({int(c[0]*255)},{int(c[1]*255)},{int(c[2]*255)},{a:.2f})"
for c, a in zip(colors, alphas)
]
traces = []
# Flow particles
traces.append(dict(
type="scatter3d",
x=positions[:, 0].tolist(),
y=positions[:, 1].tolist(),
z=positions[:, 2].tolist(),
mode="markers",
marker=dict(
size=3,
color=plotly_colors,
opacity=1.0, # Per-particle alpha is in the color
),
name="Flow particles",
showlegend=False,
hoverinfo="skip",
))
return traces
|