-
-
Notifications
You must be signed in to change notification settings - Fork 7.9k
Polar tick improvements #9068
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
Merged
Merged
Polar tick improvements #9068
Changes from 1 commit
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
73e4425
Use custom *Axis in polar plots.
QuLogic 30b4a6c
Add a custom ThetaTick for polar plots.
QuLogic 8c430e8
Add a custom RadialTick for polar plots.
QuLogic 386bb30
Apply padding to radial ticks in polar plots.
QuLogic ba242b1
Apply padding to theta ticks in polar plots.
QuLogic a2531ee
Add clip path when resetting radial ticks.
QuLogic 5f1ecbd
Add info about polar tick(label) changes.
QuLogic 9529875
Restore old polar tick label behaviour for full circles.
QuLogic 5b8d2df
Tweak padding on angular ticks to match previous.
QuLogic 33377ce
Enable ticks on some polar plot tests.
QuLogic 80a5f10
Cleanup polar tick changes based on review.
QuLogic 77e2532
Ensure polar ticks are always "right-side up".
QuLogic 228ee53
Add an 'auto' option to label rotation.
QuLogic 549c07f
Re-create polar tests images with new ticks.
QuLogic 15c57bd
Fix small grammatical errors.
QuLogic File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Apply padding to radial ticks in polar plots.
- Loading branch information
commit 386bb303171ac6bfb9c49ffc23c307eb10f595c6
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
It only looks like
angle
is used below in trig functions--why is all of the playing with cycles of2 * pi
necessary? They should just work, regardless, right?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.
I recall something weird happening before; it might have been when things were mixed degrees/radians and I hadn't realized which units were in use at this location. I will double-check to see if this is necessary.