From 6938bcd2d05474842203eb95f94bc12b18a7db55 Mon Sep 17 00:00:00 2001 From: Zynh Ludwig Date: Tue, 3 Sep 2024 01:16:25 -0700 Subject: [PATCH] faster better stronger --- src/main.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index e285b45..29238c0 100644 --- a/src/main.rs +++ b/src/main.rs @@ -79,7 +79,7 @@ fn setup( let lower_bound = -100.; let upper_bound = 100.; - for i in 0..100 { + for i in 0..1000 { use std::f32::consts::TAU; let x = small_rng.gen_range(lower_bound..=upper_bound); @@ -95,7 +95,7 @@ fn setup( .with_translation(Vec3::new(x, y, 0.)), ..default() }, - velocity: Velocity(Vec2::from_angle(angle) * 100.), + velocity: Velocity(Vec2::from_angle(angle) * 200.), ..default() }); }