From 3dc92fad981e28c760f3c6e95f5a8153ea6c9be4 Mon Sep 17 00:00:00 2001 From: Jon Santmyer Date: Wed, 15 Apr 2026 22:22:45 -0400 Subject: work on orbits (not right yet), orbit camera --- src/tacmap/render.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) (limited to 'src/tacmap/render.rs') diff --git a/src/tacmap/render.rs b/src/tacmap/render.rs index c22878e..0f6b409 100644 --- a/src/tacmap/render.rs +++ b/src/tacmap/render.rs @@ -142,12 +142,7 @@ impl BodyRenderer let bodies = solar_system.bodies(); let body_instances = bodies.iter().map(|body| { - let position = match body.position(time) { - Some(pos) => pos, - None => return BodyInstanceRaw { - position: [0.0, 0.0, 0.0], - radius: body.radius() } - }; + let position = body.position(); BodyInstance { position: position, radius: body.radius() -- cgit v1.2.3