Difference between revisions of "Set View"

From PyMOLWiki
Jump to navigation Jump to search
Line 2: Line 2:
 
'''set_view''' sets viewing information for the current scene, including the rotation matrix, position, origin of rotation, clipping planes, and the orthoscopic flag.
 
'''set_view''' sets viewing information for the current scene, including the rotation matrix, position, origin of rotation, clipping planes, and the orthoscopic flag.
  
This command is extremely useful for making movies.  One may set up the scene to be rendered, then save the exact orientation, with respect to the camera, of the scene using, the [[get_view]] command.  The output from the [[get_view]] command may then be used by the '''set_view''' command to restore the orientation of the scene.
+
This command is extremely useful for making movies.  One may set up the scene to be rendered, then save the exact orientation, with respect to the camera, of the scene using, the [[Get_View]] command.  The output from the [[Get_View]] command may then be used by the '''set_view''' command to restore the orientation of the scene.
  
 
===USAGE===
 
===USAGE===

Revision as of 02:44, 23 February 2007

DESCRIPTION

set_view sets viewing information for the current scene, including the rotation matrix, position, origin of rotation, clipping planes, and the orthoscopic flag.

This command is extremely useful for making movies. One may set up the scene to be rendered, then save the exact orientation, with respect to the camera, of the scene using, the Get_View command. The output from the Get_View command may then be used by the set_view command to restore the orientation of the scene.

USAGE

set_view (...)  where ... is 18 floating point numbers

PYMOL API

cmd.set_view(string-or-sequence view)

NOTES

Contents of the view matrix

  • 0 - 8 = 3x3 rotation matrix which transforms model to camera space
  • 9 - 11 = camera position (in model space and relative to the origin of rotation)
  • 12 - 14 = origin of rotation (in model space)
  • 15 = front plane distance from the camera
  • 16 = rear plane distance from the camera
  • 17 = not implemented (the online help says that this should be the orthoscopic view flag, but PyMol as of v0.99 does not implement this)

SEE ALSO

Get View