Skip to content

Commit

Permalink
Turn antialiasing ON by default
Browse files Browse the repository at this point in the history
Fixes issue #1432
  • Loading branch information
sankhesh committed Jul 6, 2015
1 parent a5c53b2 commit 49fb29c
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Packages/vcs/Lib/VTKPlots.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,8 +52,9 @@ def __init__(self,canvas,renWin=None, debug=False,bg=None):
self.numberOfPlotCalls = 0
self.renderWindowSize=None
self.clickRenderer = None
# Turn off anti-aliasing by default
self.antialiasing = 0
# Turn on anti-aliasing by default
# Initially set to 16x Multi-Sampled Anti-Aliasing
self.antialiasing = 16

if renWin is not None:
self.renWin = renWin
Expand Down

0 comments on commit 49fb29c

Please sign in to comment.