-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
[BUG]: Shift box_aspect according to vertical_axis #28041
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
Changes from 14 commits
717e20e
df6dcb1
349975d
2db9d1a
2f71739
11d996f
373651f
3589da5
491395a
0080cd9
8833023
9f6354a
f904414
2f49d87
f7259e4
68b26df
57c7a65
1137dce
7405597
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,6 +11,7 @@ | |
""" | ||
|
||
from collections import defaultdict | ||
from typing import Literal | ||
import itertools | ||
import math | ||
import textwrap | ||
|
@@ -383,7 +384,7 @@ def set_box_aspect(self, aspect, *, zoom=1): | |
# of the axes in mpl3.8. | ||
aspect *= 1.8294640721620434 * 25/24 * zoom / np.linalg.norm(aspect) | ||
|
||
self._box_aspect = aspect | ||
self._box_aspect = self._roll_to_vertical(aspect, sign=-1) | ||
self.stale = True | ||
|
||
def apply_aspect(self, position=None): | ||
|
@@ -1191,9 +1192,21 @@ def set_proj_type(self, proj_type, focal_length=None): | |
f"None for proj_type = {proj_type}") | ||
self._focal_length = np.inf | ||
|
||
def _roll_to_vertical(self, arr): | ||
"""Roll arrays to match the different vertical axis.""" | ||
return np.roll(arr, self._vertical_axis - 2) | ||
def _roll_to_vertical( | ||
self, arr: "np.typing.ArrayLike", sign: Literal[1, -1] = 1 | ||
) -> np.ndarray: | ||
""" | ||
Roll arrays to match the different vertical axis. | ||
|
||
Parameters | ||
---------- | ||
arr : ArrayLike | ||
Array to roll. | ||
sign : Literal[1, -1], default: 1 | ||
Roll the array elements in a positive or negative | ||
direction. Defaults to the positive direction. | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. My point was that the naming There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to d 8000 escribe this comment to others. Learn more. sign was inspired by np.sign for reference. |
||
""" | ||
return np.roll(arr, sign * (self._vertical_axis - 2)) | ||
|
||
def get_proj(self): | ||
"""Create the projection matrix from the current viewing position.""" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2276,6 +2276,23 @@ def test_on_move_vertical_axis(vertical_axis: str) -> None: | |
) | ||
|
||
|
||
@pytest.mark.parametrize("vertical_axis", ["x", "y", "z"]) | ||
def test_set_box_aspect_vertical_axis(vertical_axis: str) -> None: | ||
ax = plt.subplot(1, 1, 1, projection="3d") | ||
ax.view_init(elev=0, azim=0, roll=0, vertical_axis=vertical_axis) | ||
ax.figure.canvas.draw() | ||
|
||
aspect_old = tuple(ax._box_aspect) | 90F1 tr>||
aspect_expected = np.roll( | ||
aspect_old, -1 * (ax._axis_names.index(vertical_axis) - 2) | ||
) | ||
|
||
ax.set_box_aspect(None) | ||
aspect_new = tuple(ax._box_aspect) | ||
|
||
np.testing.assert_allclose(aspect_expected, aspect_new) | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Does this test have semantic meaning? I can't see by itself that I think there are two ways to make this better: Either
|
||
|
||
|
||
@image_comparison(baseline_images=['arc_pathpatch.png'], | ||
remove_text=True, | ||
style='mpl20') | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@QuLogic it seems
mplot3d
is not yet typed at all. Do you plan to go with type stubs or inline type hints here?There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Correct that all of mpltoolkits (including mplot3d) is not yet type hinted at all.
I have no current plans regarding extending type hints here at the moment (not opposed, just have no active plans to undertake it myself)
I think whether to do stubs or inline is up to whoever wishes to implement it. Stubs would be my default option, just because that is what we have mostly, but it is not a strong opinion.
I do prefer inline in general, but opted for stubs because it limited how much runtime code needed to be touched in an already pretty large task.
That said, we have precedence for some new typing work being done inline (
_mathtext.py
).Further, I have in general erred towards not type hinting private functionality (as this is), at least in stubs, as they are mostly useful to external users anyway.
TL;DR Could go either way, not really harming anything to have them here.