Created
August 2, 2017 14:19
-
-
Save rohitfarmer/0d5d4ee37d7b5d7de08a8af33e29afc3 to your computer and use it in GitHub Desktop.
Pymol Ray Tracing Options
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
set ray_trace_mode, 1 #this is for backborder | |
set antialias, 6; #higher the value smoother the picture is | |
set ray_shadow, 1 #switch on the shadows | |
set ray_trace_gain, 0.0 #to alter the thickness of the outline | |
set cartoon_fancy_helices, 1 #for fancy cartoon | |
set cartoon_highlight_color, grey #to colour inside of helix | |
set ray_texture, 4 #it gives a matte style texture | |
ray 2400, 2400 #this is fore really high resolution image, you may not need it | |
#These are the two options I usually use: first one colours the inisde of helix as grey the second one doesn't | |
set ray_trace_mode, 1; set antialias, 6; set ray_shadow, 1; set cartoon_highlight_color, grey;set ray_texture, 4 | |
set ray_trace_mode, 1; set antialias, 6; set ray_shadow, 1; set ray_texture, 4 | |
#no black outline | |
set antialias, 6; set ray_shadow, 1; set ray_texture, 4 | |
ray |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment