Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Fix streamplot for non-square grids.#789
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 ourterms of service andprivacy statement. We’ll occasionally send you account related emails.
Already on GitHub?Sign in to your account
Uh oh!
There was an error while loading.Please reload this page.
Conversation
tonysyu commentedMar 22, 2012
- Order of x/y was switched.
- Additional cleanup (remove unused import and old comment, improve docstring).
* Order of x/y was switched.* Additional cleanup (remove unused import and old comment, improve docstring).
jswhit commentedMar 26, 2012
I just noticed that the patches for the arrows on the streamlines are not returned - so you can't remove them from the axes instance or alter their properties. Perhaps a streamline collection object could be created (and returned) that includes both the streamline line collection and the arrow patch collection. |
@jswhit Yeah, the plan was to add this at some point, but it fell off my radar. Thanks for the reminder I just submitted a PR (#803) to return an arrow patch collection. I think creating a custom streamline collection object is a bit too much (work); instead, I just return separate collections for the streamlines and arrow patches. |
Fix streamplot for non-square grids.