Dynamics
These examples are about continuous motion, evolving state, and updater-driven behavior.
Recommended Examples​
force_fieldsFocus: moving charges and a field that updates in responseparticlesFocus: dense procedural motion with cinematic framingtraced_pathsFocus: motion history becoming part of the visual resultneural_networksFocus: routed signal playback over a structured diagramtransformer_attentionFocus: token relationships, attention heatmaps, and transformer-style structuretensor_semanticsFocus: computed self-attention with named axes and stable element identitytensor_operationsFocus: semantic reshape, split/merge, and broadcasting operationstensor_slicingFocus: explicit projection of rank-4 activations into a visual rank-2 viewself_attention_lessonFocus: versioned trace ingestion followed by computed attention, residual, logits, and sampling stagesstepwise_storytellingFocus: staged narrative flow rather than raw geometry alone
Good First Pick​
Start with force_fields for updater-driven motion. For AI computation, start with
tensor_semantics, then continue to self_attention_lesson for the complete trace-backed path.
What To Look For​
- whether the state evolution is understandable without narration
- whether the motion feels alive without becoming noisy
- whether the updater work supports the idea instead of distracting from it
Run Locally​
cargo run --example force_fields
cargo run --example tensor_semantics
cargo run --example self_attention_lesson