Commit ff16da1
committed
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())
```1 parent bba391d commit ff16da1
1 file changed
+1
-0
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
1063 | 1063 | | |
1064 | 1064 | | |
1065 | 1065 | | |
| 1066 | + | |
1066 | 1067 | | |
1067 | 1068 | | |
1068 | 1069 | | |
| |||
0 commit comments