8000 Removed normalization of arrows in 3D quiver by DanHickstein · Pull Request #5458 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content
Prev Previous commit
Next Next commit
Included "normalize=True" to the quiver3d_demo
  • Loading branch information
DanHickstein committed Nov 10, 2015
commit 8ac7544dd33bb3fd25434d9f336a793a95ec7d3a
2 changes: 1 addition & 1 deletion examples/mplot3d/quiver3d_demo.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@
w = (np.sqrt(2.0 / 3.0) * np.cos(np.pi * x) * np.cos(np.pi * y) *
np.sin(np.pi * z))

ax.quiver(x, y, z, u, v, w, length=0.1)
ax.quiver(x, y, z, u, v, w, length=0.1,normalize=True)
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

need a space after the comma.


plt.show()
0