Hey guys! This is my Orion Constellation project, would guys mind reviewing the code?
Thank You!
Here is the link for it:
Hey guys! This is my Orion Constellation project, would guys mind reviewing the code?
Thank You!
Here is the link for it:
No issues with the code but get some labels on those graphs ASAP . There’s also a wee issue with your 3D plot which has come up a few times recently where the standard
matplotlib.pyplot.scatter
function is used which is a 2D scatter function (all those points are on the same xy plane at z=0.0
). You need to be using the scatter method of the 3d axis itself, e.g. ax3d.scatter(x, y, z...)
. See the docs for info-
https://matplotlib.org/3.3.0/api/_as_gen/mpl_toolkits.mplot3d.axes3d.Axes3D.html#mpl_toolkits.mplot3d.axes3d.Axes3D.scatter
Appreciate the feedback!
Thank you!