pub fn simulate_freefall( initial: &RocketState, n_steps: usize, dt: f64, gravity: f64, ) -> (Vec<Vector2<f64>>, Vec<Vector2<f64>>)
Simulate free-fall trajectory (no thrust) for comparison.