| Test | #Elements | Avg. FPS (GPU) | Avg. CPU % | Memory (MB) | Comments | |------|-----------|----------------|------------|-------------|----------| | Simple card carousel (12 cards) | 12 | | 2 % | 38 | Baseline – negligible load. | | Large dashboard (4 200 tiles, each with sparkline) | 4 200 | 61 | 8 % | 212 | GPU‑solver kept frame time < 16 ms. | | AR overlay (180 objects, depth‑sorting) | 180 | 78 | 5 % | 65 | GPU‑based depth‑sort handled 60 Hz head‑tracking. | | Accessibility‑only mode (CPU fallback) | 1 200 | 32 | 14 % | 96 | Acceptable for low‑end devices; auto‑fallback triggered. |

// 1️⃣ Create the root app const app = createTorusApp( // Projection: equirectangular (default) projection: 'equirect', // Optional global theme tokens theme: colors: primary: '#0066ff', surface: '#fafafa' , curvature: 0.8, // 0 = flat, 1 = perfect torus , );

// 3️⃣ Add a perpetual warp animation (rotate around θ) warp( axis: 'θ', speed: 0.25, // radians per second easing: 'linear', );