Surface color: Difference between revisions
Jump to navigation
Jump to search
(New page: = Overview = '''surface_color''' controls the color of surfaces as drawn in PyMOL. <center> <gallery> Image:Surface color ex1.png|Usual surface coloring Image:Surface color ex2.png|Color ...) |
|||
(5 intermediate revisions by 2 users not shown) | |||
Line 12: | Line 12: | ||
<source lang="python"> | <source lang="python"> | ||
# color the surface | # color the surface | ||
set surface_color, ( | set surface_color, (color), (selection) | ||
</source> | </source> | ||
= | = Examples = | ||
<source lang="python"> | <source lang="python"> | ||
# color the surface white | # color the surface white | ||
set surface_color, *, | set surface_color, white, * | ||
# return surface coloring to the default scheme | |||
set surface_color, default, * | |||
</source> | </source> | ||
= See Also = | |||
[[Color]], [[Color_Values]] | |||
[[:Category: | [[Category:Settings]] | ||
[[Category:Coloring]] |
Latest revision as of 07:31, 9 July 2017
Overview
surface_color controls the color of surfaces as drawn in PyMOL.
Syntax
# color the surface
set surface_color, (color), (selection)
Examples
# color the surface white
set surface_color, white, *
# return surface coloring to the default scheme
set surface_color, default, *