Line smooth: Difference between revisions

From PyMOLWiki
Jump to navigation Jump to search
(Created page)
 
Line 2: Line 2:
This is a display setting.
This is a display setting.


The line_smooth setting determines whether lines are antialiased.  The default is to use antialiased lines.
The '''line_smooth setting''' determines whether lines are '''[[antialias]]'''ed.  The default is to use antialiased lines.


==Syntax==
==Syntax==

Revision as of 01:37, 24 February 2007

Overview

This is a display setting.

The line_smooth setting determines whether lines are antialiased. The default is to use antialiased lines.

Syntax

To turn off antialiasing:

set line_smooth, 0

To turn on antialising (default):

set line_smooth, 1

From python:

cmd.set('line_smooth', '0')

or

cmd.set('line_smooth', '1')