Re-packaged

This commit is contained in:
Connor
2021-08-25 15:33:44 -06:00
parent e25d6ff9f4
commit fe627515dc
20 changed files with 584 additions and 137 deletions

View File

@@ -1,5 +1,7 @@
@testset "Plotting" begin
using PlotlyJS
# First some setup
sc = Sc("test")
T = rand(3600*2:0.01:3600*4)
@@ -13,7 +15,7 @@
ΔVs = repeat([0.5, 0., 0.]', outer=(n,1))
path = prop(ΔVs, start, sc, μs["Earth"], 3T)[1]
p = plot_orbits([path])
savefig(p,"plot_test.html")
savefig(p,"../plots/plot_test.html")
@test typeof(p) == PlotlyJS.SyncPlot
end