-
Notifications
You must be signed in to change notification settings - Fork 20
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
Visualization of (continuous) secondary source contour by polygon #38
base: master
Are you sure you want to change the base?
Conversation
spors
commented
Jan 24, 2017
Two observations:
|
I guess this needs a |
Possible fix for the second point made by @trettberg above: instead of line segments from one secondary source to the next, we should use line segments from halfway from the previous source to the current source to halfway to the next source. Again, the implementation could be similar to |
I have fixed the issue regarding the gap and the region of active secondary sources:
|
# add collection of lines to current axis | ||
if ax is None: | ||
ax = plt.gca() | ||
plt.gca().add_collection(lc) |
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.
This should be ax.add_collection(lc)
Have the secondary sources to be connected by a line? |