Introduction
Welcome to Ferrous Simulation
Ferrous Simulation is a high-performance, universal simulation engine built with Rust. It provides a powerful and flexible framework for creating various types of simulations, from physics simulations to agent-based models.
Key Features
- High Performance: Built with Rust for maximum speed and efficiency
- Flexible Architecture: Modular design allows for easy customization
- Cross-Platform: Runs on Windows, macOS, and Linux
- Real-time Visualization: Built-in rendering capabilities
- Extensible: Plugin system for custom functionality
Quick Start
Get up and running with Ferrous Simulation in just a few minutes. Follow our installation guide and create your first simulation.
use ferrous_simulation::Simulation;
fn main() {
let mut sim = Simulation::new();
sim.add_entity(Entity::new("particle"));
sim.run();
}
Next Steps
- Installation Guide - Set up your development environment
- Core Concepts - Understand the fundamental architecture
- Your First Simulation - Build a simple simulation from scratch