I'm busy building a simple physics engine as a school project and I'm struggling to actually plot the coordinates for the vertices and edges of my 3D shapes. How can I use matplot/pyplot to achieve this with simple coordinates?
This is for Python 3.7 and I've tried using this library many times but the only lines I see are sine curves which is somehow already a line without xyz input.
This is the type of data I have:
[[0,0,0],[1,1,1],[1,0,0],[0,1,1],[0,1,0],[1,0,1],[0,0,1],[1,1,0]]
I'd love to be able to plot 3D shapes like this that can move around in the same simulation. Any suggestions?