In this repository you will find a script (streamtubes.py) that can be used as module for plotting streamtubes in Matplotlib. In this section you will find a couple of examples on how to use ...
fig = plt.figure() ax = fig.add_subplot(projection='3d') ax.set_xlim((0, 5)) ax.set_ylim((0, 5)) ax.set_zlim((0, 5)) x = [1,2,3, 3,2,1] y = [2,1,2, 2,1,2] z = [1,1,1 ...