I'm using matplotlib Poly_Editor to create an editable contour, but for the purpose of my project it would be interesting to plot de curve with fewer markers. Or (it would be even better) plot it without any markers and let de user add it if they wish.
I'm using this code from Matplotlib examples, with some small rewrites that don't affect this issue, and the image I'm getting (zoomed in) is the one bellow.
I tried the parameter "markevery" from Line2D but it doesn't work properlly and ends up messing the lines when you drag de markers.
self.line = Line2D(x, y, color='b', marker='o', markerfacecolor='r', linewidth=1, markevery=10
fillstyle=None, solid_capstyle='butt', solid_joinstyle='round', animated=True)
If someone could help it would be great, I'm struggling with this for days.
