You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Clarify interaction between params of get_path_collection_extents.
That master_transform is ignored is clear looking at the implementation
in _path.h (the `if (Ntransforms)` branch drops master_transform;
compare with the implementation of point_in_path_collection). One can
also compare
```
from matplotlib.path import *; from matplotlib.transforms import *
get_path_collection_extents(
Affine2D().scale(2, 3), [Path([(1, 2), (3, 4)])],
[], [(0, 0)], IdentityTransform())
get_path_collection_extents(
Affine2D().scale(2, 3), [Path([(1, 2), (3, 4)])],
[IdentityTransform()], [(0, 0)], IdentityTransform())
```
0 commit comments