diff --git a/src/scripts/plot_3d.py b/src/scripts/plot_3d.py index 811bf6a..535a27a 100644 --- a/src/scripts/plot_3d.py +++ b/src/scripts/plot_3d.py @@ -16,8 +16,8 @@ def main(): ] colors = [ "lightskyblue", - "deepskyblue", "salmon", + "deepskyblue", "darkred" ] ax = plt.figure().add_subplot(projection="3d") @@ -31,6 +31,7 @@ def main(): ax.set_xlabel(r"x $(\mu m)$") ax.set_ylabel(r"y $(\mu m)$") ax.set_zlabel(r"z $(\mu m)$") + ax.view_init(10,45) plt.title(r"2 particles with and without interactions.") plt.legend() plt.savefig("../latex/images/3d_plot.pdf")