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
Fixes#3998.
The issue is that some transfroms sometimes returned masked arrays from
`transform_non_affine` (ex Log10transform). The `Path` constructor
fills masked arrays to full arrays with `np.nan`, but the
`_fast_from_codes_and_verts` does not (as it assumes the verts have been
fully validated on the way in).
This adds the maskedarray -> np.nan filled array normalization into
`transform_path_non_affine`.
0 commit comments