8000 Fill in missing Axes3D box_aspect argument docstring by scottshambaugh · Pull Request #22045 · matplotlib/matplotlib · GitHub
[go: up one dir, main page]

Skip to content

Fill in missing Axes3D box_aspect argument docstring #22045

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions lib/mpl_toolkits/mplot3d/axes3d.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ def __init__(
Other axes to share z-limits with.
proj_type : {'persp', 'ortho'}
The projection type, default 'persp'.
box_aspect : 3-tuple of floats, default: None
Changes the physical dimensions of the Axes3D, such that the ratio
of the axis lengths in display units is x:y:z.
If None, defaults to 4:4:3
computed_zorder : bool, default: True
If True, the draw order is computed based on the average position
of the `.Artist`\\s along the view direction.
Expand Down
0