Simulations Docs

Comprehensive documentation for our interactive simulation tools and experiments.

Getting Started

Our simulations are built using TypeScript and WebGL. To get started, visit our GitHub repository for installation instructions and sample projects.

Core Concepts

API Reference

All simulations expose a JavaScript API for customization. Here are the core methods:

// Initialize a simulation
const sim = new Simulation({
    container: '#canvas',
    width: 800,
    height: 600
});

// Add a physical force
sim.addForce(new Gravity(9.81));

// Start simulation loop
sim.start();

See the full API documentation for more details.

Examples

Projectile Motion

Visualize parabolic trajectories with adjustable velocity and angle parameters.

Double Pendulum

Observe chaotic motion patterns in this classic physics experiment.

Neural Network

Watch as neural networks learn to solve problems through visual feedback.