Orion Constellation Python Project 2021

Hi, welcome to the forums!
Yep, you can post your projects here for others to comment.

Check out this thread about how to make your 3-d scatterplot in 3-D rather than 2D:

Also, you can add some items to the 3-D grid to get rid of the grid itself:
ax3D.grid(False)
and, possibly:
ax3D.set_facecolor('black')
ax3D.scatter(x,y,z, c='gold', marker = '*', s= 60)
But, it’s all up to you how much you want to customize the 3D scatterplot. :slight_smile:

1 Like