Drawing a righthand coordinate system in mplot3d
问题 I want to create plots from Python of 3D coordinate transformations. For example, I want to create the following image (generated statically by TikZ): A bit of searching led me to the following program: import numpy as np from matplotlib import pyplot as plt from mpl_toolkits.mplot3d import Axes3D from matplotlib.patches import FancyArrowPatch from mpl_toolkits.mplot3d import proj3d class Arrow3D(FancyArrowPatch): def __init__(self, xs, ys, zs, *args, **kwargs): FancyArrowPatch.__init__(self,