I want to draw some hlines and vlines snapped to occupy whole pixels on the screen, not spread across several pixels (rendered, antialiased) as usual. Is there a transform T() so that

vlines( T(x), T(ylo), T(yhi), linewidth=Twidth(.5) )

draws whole pixels ? Or, is there a way of telling some Mac backend (I use Qt4agg) to do this ?

link|improve this question

47% accept rate
feedback

1 Answer

up vote 1 down vote accepted

Do you just want to turn antialiasing off?

For example:

import matplotlib.pyplot as plt

x = [1, 4, 7]
ylow = [0, 3, -2]
yhigh = [1, 4, 2]
width = [8, 15, 6]

plt.vlines(x, ylow, yhigh, linewidth=width,
           antialiased=False)
plt.axis([0, 8, -4, 5])
plt.show()

enter image description here

link|improve this answer
Thanks Joe; may need linewidth=1e-6 too. (Seems that only lines can be antialiased, not text, not scatter markers ?) – Denis Jan 18 at 14:01
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.