-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Plot limit with transform #731
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
Changes from 10 commits
8bbe2e5
2f2ff13
2286565
3ccff6f
dfbe69c
83ed6c8
b96e139
45f234f
8dbe074
930b117
4b0fbb5
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -167,9 +167,15 @@ def get_transform(self): | |
return self.get_patch_transform() + artist.Artist.get_transform(self) | ||
|
||
def get_data_transform(self): | ||
""" | ||
Return the :class:`~matplotlib.transforms.Transform` ... I'm not sure | ||
""" | ||
return artist.Artist.get_transform(self) | ||
|
||
def get_patch_transform(self): | ||
""" | ||
Return the :class:`~matplotlib.transforms.Transform` ... I'm not sure | ||
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. @mdboom: Would you know what these ( 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. Needs resolving before merging. 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.
|
||
""" | ||
return transforms.IdentityTransform() | ||
|
||
def get_antialiased(self): | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Too long line.