>[!quote] In a Nutshell
>Collection of useful information for creating good 3D plots with the [[- Matplotlib -|Matplotlib]] [[- Python Programming Language -|Python]] package.
---
- Viewing Angles
- https://matplotlib.org/stable/api/toolkits/mplot3d/view_angles.html
![[Pasted image 20240918163811.png|center|300]]
---
#### Zorder Issues
- https://stackoverflow.com/questions/31506361/grid-zorder-seems-not-to-take-effect-matplotlib
---
- `quiver(X,Y,U,V)` can take arrays of coordinates, enabling to draw vector field with single line of code
- **Default** for arguments $U,V$ uses `uv`, which is in **screen coordinates** (percentages, U=V means $45°$)
- `angles='xy'` to draw in data coordinates $(X+U,Y+V)$