Difference between revisions of "Rendering"

From Jmol
Jump to navigation Jump to search
(This page tells how to implement standard rendering styles in Jmol script)
 
(update of default syntax)
 
(5 intermediate revisions by 4 users not shown)
Line 1: Line 1:
 +
{{Tutorials_Sections}}
 +
 
Rendering in Jmol can be needlessly complicated for a beginner, or one who is used to simple Chime scripting. The Jmol menu isn't much help, because it offers standard schemes under the Style submenu, but doesn't provide them in scripting!
 
Rendering in Jmol can be needlessly complicated for a beginner, or one who is used to simple Chime scripting. The Jmol menu isn't much help, because it offers standard schemes under the Style submenu, but doesn't provide them in scripting!
  
To help with that, here's the way the standard styles (from the Jmol menu) are rendered in Jmol script; the script elements are shown in quotation marks:
+
To help with that, here's the way the standard styles (from the Jmol menu) may be rendered in Jmol script; the script elements are shown in quotation marks:
 +
 
 +
Space-filling:
 +
spacefill 100%;
 +
// or
 +
spacefill on;
 +
// or
 +
spacefill only; // disables all other styles
 +
 
 +
Ball-and-stick:
 +
wireframe 0.15; spacefill 23%;
 +
 
 +
Stick model:
 +
wireframe 0.3; spacefill off;
  
Space-filling"spacefill 100%;"
+
Wireframe:  
Ball-and-stick: "wireframe 0.2; spacefill 20%;"
+
  wireframe 0.01; spacefill 0;
Stick model: "wireframe 0.3; spacefill 0;"
+
// or
Wireframe: "wireframe 0.01; spacefill 0;"
+
wireframe on; spacefill off;
 +
// or
 +
wireframe only; // disables all other styles
 +
 
 +
Cartoon (macromolecules only):
 +
select protein, nucleic;
 +
cartoon only;
 +
color cartoon structure;
  
 
A note to Jmol developers: it would be helpful to have a single command within Jmol that would implement the standard Jmol rendering styles!
 
A note to Jmol developers: it would be helpful to have a single command within Jmol that would implement the standard Jmol rendering styles!
 
 
--[[User:BergerBluffton|BergerBluffton]] 18:33, 2 September 2007 (CEST)
 
--[[User:BergerBluffton|BergerBluffton]] 18:33, 2 September 2007 (CEST)

Latest revision as of 14:21, 30 May 2014

Jmol / JSmol Tutorials


Rendering in Jmol can be needlessly complicated for a beginner, or one who is used to simple Chime scripting. The Jmol menu isn't much help, because it offers standard schemes under the Style submenu, but doesn't provide them in scripting!

To help with that, here's the way the standard styles (from the Jmol menu) may be rendered in Jmol script; the script elements are shown in quotation marks:

Space-filling:

spacefill 100%;
// or
spacefill on;
// or
spacefill only; // disables all other styles

Ball-and-stick:

wireframe 0.15; spacefill 23%;

Stick model:

wireframe 0.3; spacefill off;

Wireframe:

wireframe 0.01; spacefill 0;
// or
wireframe on; spacefill off;
// or
wireframe only;  // disables all other styles

Cartoon (macromolecules only):

select protein, nucleic;
cartoon only;
color cartoon structure;

A note to Jmol developers: it would be helpful to have a single command within Jmol that would implement the standard Jmol rendering styles! --BergerBluffton 18:33, 2 September 2007 (CEST)