8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 006f6ad commit 57fb822Copy full SHA for 57fb822
lib/mpl_toolkits/mplot3d/axes3d.py
@@ -2608,7 +2608,7 @@ def calc_arrow(uvw, angle=15):
2608
norm = np.sqrt(np.sum(UVW**2, axis=1))
2609
2610
# If any row of UVW is all zeros, don't make a quiver for it
2611
- mask = norm > 1e-10
+ mask = norm > 0
2612
XYZ = XYZ[mask]
2613
if normalize:
2614
UVW = UVW[mask] / norm[mask].reshape((-1, 1))
0 commit comments