AI Network 3D
Dynamic neural network with multi-axis rotation and energy flow
Particle Wave 3D
3D wave system with flowing particles and grid connections - Performance Optimized
DNA Helix 3D
Rotating double helix structure with dynamic lighting and base pairs
Cosmic Spiral 3D
Rotating galaxy with golden spiral arms and trailing particles
Quantum Field 3D
Vibrant energy field with wave interference patterns and multicolor dynamics
Sierpinski Triangle 2D - Neon Fractal
Classic fractal using chaos game algorithm with neon rainbow colors
🌀 Harmonic Torus Knot
State-of-the-art geometric function manipulation: Trefoil knot topology with spherical harmonic modulation and dynamic parameter evolution (5000 particles, Three.js)
⚛️ Quantum Fractal Sphere
Spherical harmonics with multi-octave fractal displacement using GPU-accelerated GLSL shaders. Demonstrates quantum-inspired morphing geometry with procedural lighting (Three.js)
Meteor Shower 3D
Fast-moving meteors with blazing orange and red trails across the night sky
Plasma Vortex 3D
Swirling tornado of pink and cyan plasma energy with turbulent motion
Crystal Formation 3D
Growing geometric crystals with emerald and sapphire colors in 3D space
Voronoi Tessellation 3D
Organic cell-like structures with dynamic 3D Voronoi diagrams and pulsing nuclei
Penrose Tiling 3D
Non-periodic golden ratio tessellation with kites and darts in 3D depth
Islamic Geometric Pattern 3D
Persian and Moorish star tessellations with turquoise, gold, and sapphire colors
Morphing Polyhedra 3D
Platonic solids transforming through tessellated edges - tetrahedron, cube, octahedron, dodecahedron, icosahedron
Lorenz Attractor 3D
Chaotic dynamical system demonstrating butterfly effect - σ=10, ρ=28, β=8/3
Fourier Epicycles 3D
Harmonic circular motion creating complex paths through rotating epicycles and frequency harmonics
Sierpinski Pyramid 3D
Recursive fractal tetrahedron demonstrating self-similarity with Hausdorff dimension 2
Mandelbrot Set Fractal Zoom
Infinite fractal zoom into famous locations - Seahorse Valley, Elephant Valley, and more
Julia Set Fractal (Cosmic Theme)
Animated Julia set with smooth color cycling through cosmic palette - infinite complexity and self-similarity
Burning Ship Fractal (Cosmic Theme)
Ship-like structure with blazing colors and interactive zoom - asymmetric fractal with absolute value transformation
Klein Bottle 4D Projection
Non-orientable 4D surface with one side - a topological impossibility in 3D space
Hopf Fibration Topology
Circular fibers mapping 3-sphere to 2-sphere - fundamental in quantum mechanics and fiber bundles
Icosahedron Geometric 3D
Perfect 20-sided Platonic solid with dynamic rotation, edge highlighting, and vertex glow - geometric theme
Tesseract (4D Hypercube) Geometric
4D hypercube projected to 3D then 2D - 16 vertices, 32 edges, rotating in 4D space with beautiful trails
Fourier Square Wave
Odd harmonics (1, 3, 5, 7...) combining to create a square wave - classic signal processing
Fourier Triangle Wave
Alternating harmonics with 1/n² decay creating smooth triangle waves
Fourier Sawtooth Wave
All harmonics (1, 2, 3, 4...) creating the classic sawtooth waveform
Fourier Heart Shape
Epicycles drawing a parametric heart using Discrete Fourier Transform
Fourier Star Shape
5-pointed star drawn by Fourier epicycles - perfect for awards and achievements
Lissajous Curves - Cosmic Theme
Mesmerizing parametric curves from harmonic oscillations - figure-8 and infinity patterns with cosmic trails
Spirograph Harmonograph - Cosmic Theme
Intricate geometric patterns from epicycloid motion - simulates classic spirograph drawing tool
Boids Flocking Simulation - Organic Theme
Emergent flocking behavior using separation, alignment, and cohesion - Craig Reynolds' algorithm with natural colors
Fluid Flow Field - Organic Theme
Perlin noise-based flow field with particle system - organic fluid movement simulation
Moiré Interference Pattern - Retro
Mesmerizing moiré effects from overlapping rotating grids with vibrant 80s colors
Fraser Spiral Illusion - Retro
Famous optical illusion where concentric circles appear as spirals with vibrant 80s colors
Integration Guide
Step 1: Add Canvas Element
Add a canvas element with a unique ID to your HTML:
<canvas id="yourVisualizationId" class="ai-visualization-canvas"></canvas>
Step 2: Include Script
Load the visualization script before your initialization code:
<script src="/visualizations/js/[visualization-name].js"></script>
Step 3: Initialize
Call the initialization function with your canvas ID:
<script>
const control = init[VisualizationName]('yourVisualizationId');
</script>
Step 4: Style Canvas (Optional)
Add CSS to control canvas dimensions:
.ai-visualization-canvas {
width: 100%;
height: 500px;
border-radius: 15px;
background: radial-gradient(circle, rgba(0,180,216,0.05), transparent);
}
Control Functions
All visualizations return a control object with methods:
control.stop(); // Pause animation
control.start(); // Resume animation