Python/matplotlib : plotting a 3d cube, a sphere and a vector?
I search how to plot something with less instruction as possible with matplotlib but I don't find any help for this in the documentation.
I want to plot the following things:
- a wireframe cube centered in 0 with a side length of 2
- a "wireframe" sphere centered in 0 with a radius of 1
- a point at coordinates [0, 0, 0]
- a vector that starts at this point and goes to [1, 1, 1]
How to do that?