Uh oh!
There was an error while loading.Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork7.9k
Caching the results of Transform.transform_path for non-affine transforms#723
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.
Changes fromall commits
753c9a2
c4ceace
bf4dd97
4c88a6d
c088477
1b1b340
e9cc98e
c898bdf
a81545c
File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading.Please reload this page.
Jump to
Uh oh!
There was an error while loading.Please reload this page.
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -657,9 +657,9 @@ def draw_gouraud_triangle(self, gc, points, colors, trans): | ||
writer.start(u'defs') | ||
for i in range(3): | ||
x1, y1 =tpoints[i] | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others.Learn more. This bug came out in the pcolor test (the pcolor was not in the correct place). I don't understand how it wasn't failing before, but the fact that the bug has been highlighted by this PR is a good sign. | ||
x2, y2 =tpoints[(i + 1) % 3] | ||
x3, y3 =tpoints[(i + 2) % 3] | ||
c = colors[i][:] | ||
if x2 == x3: | ||
Uh oh!
There was an error while loading.Please reload this page.