Skip to content
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

Quiver3d fixes #3300

Merged
merged 1 commit into from Jul 24, 2014
Merged

Conversation

WeatherGod
Copy link
Member

  • numpy 1.6 does not support 3+ arguments for meshgrid
  • actually use the sanitized data (fixes broadcasting issue)
  • use argi through-out the function
  • don't fail on zero flow, just don't draw a quiver

* numpy 1.6 does not support 3+ arguments for meshgrid
* actually use the sanitized data (fixes broadcasting issue)
* use argi through-out the function
* don't fail on zero flow, just don't draw a quiver
@WeatherGod
Copy link
Member Author

closes #3297

@tacaswell
Copy link
Member

2.6 and 3.4 failed on font image errors. Re-started those two

@tacaswell tacaswell added this to the v1.4.0 milestone Jul 24, 2014
@@ -2578,12 +2573,11 @@ def point_vector_to_line(point, vector, length):
u = us[i]
v = vs[i]
w = ws[i]
if any(k is np.ma.masked for k in [x, y, z, u, v, w]):
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why drop the masked check?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

because .compressed() earlier dropped all the masked values already.

tacaswell added a commit that referenced this pull request Jul 24, 2014
@tacaswell tacaswell merged commit 69d5ef4 into matplotlib:v1.4.x Jul 24, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants