From 51657e10769faa2617d546a06c42e4c62a19bb50 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 30 Jan 2022 17:41:24 +0100 Subject: Removed trailing whitespace all over the place --- Stars45/Particles.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'Stars45/Particles.cpp') diff --git a/Stars45/Particles.cpp b/Stars45/Particles.cpp index a8efbec..cf83d23 100644 --- a/Stars45/Particles.cpp +++ b/Stars45/Particles.cpp @@ -53,7 +53,7 @@ inline float randf() { return (rand()-16384.0f)/32768.0f; } Particles::Particles(Bitmap* bitmap, int np, const Vec3& base_loc, const Vec3& vel, float bspeed, float dr, float s, float bloom, float dec, float rate, bool cont, bool trail, bool rise, int a, int nframes) -: nparts(np), base_speed(bspeed), max_speed(bspeed*3.0f), +: nparts(np), base_speed(bspeed), max_speed(bspeed*3.0f), drag(dr), min_scale(s), max_scale(bloom), decay(dec), release_rate(rate), continuous(cont), trailing(trail), rising(rise), blend(a), extra(0.0f), point_sprite(0), emitting(true) @@ -200,7 +200,7 @@ void Particles::ExecFrame(double seconds) release[i] = ref_loc; } } - + if (nverts > nparts) nverts = nparts; @@ -249,7 +249,7 @@ Particles::CheckVisibility(Projector& projector) else { visible = false; } - + return visible; } -- cgit v1.1