Generates an interactive 3D visualization of the orbital system using plotly. You can click, drag to rotate, and scroll to zoom in on the trajectories.
Examples
# \donttest{
create_system() |>
add_body("Earth", mass = mass_earth) |>
add_body("Moon", mass = mass_moon,
x = distance_earth_moon, vy = speed_moon, vz = 150) |>
simulate_system(time_step = seconds_per_hour, duration = seconds_per_day * 30) |>
plot_orbits_3d()
# }