Difference between revisions of "Rotate"

From PyMOLWiki
Jump to navigation Jump to search
 
m
 
(15 intermediate revisions by 4 users not shown)
Line 1: Line 1:
===DESCRIPTION===
+
'''rotate''' can be used to rotate the atomic coordinates of a molecular object.  Behavior differs depending on whether or not the '''object''' parameter is specified.
 
  "rotate" can be used to rotate the atomic coordinates of a
 
  molecular object.  Behavior differs depending on whether or not the
 
  "object" parameter is specified.
 
 
  If object is None, then rotate rotates the atomic coordinates
 
  according to the axes and angle for the selection and state
 
  provided.  All representation geometries will need to be
 
  regenerated to reflect the new atomic coordinates.
 
 
  If object is set to an object name, then selection and state are
 
  ignored and instead of translating the atomic coordinates, the
 
  object's representation display matrix is modified.  This option
 
  is for use in animations only.
 
 
   
 
   
 +
If object is '''None''', then rotate rotates the atomic coordinates according to the axes and angle for the selection and state provided. 
 +
 +
If object is set to an object name, then selection and state are ignored and instead of translating the atomic coordinates, the [[Object_Matrix|object matrix]] is modified. This option is intended for use in animations.
 +
 +
The "camera" option controls whether the camera or the model's axes are used to interpret the translation vector.  To move the object relative to the camera set '''camera=1''' (which is default), or to move the molecule relative to the model's geometry, set '''camera=0'''.
 +
 +
If this doesn't do what you want, consider [[Turn]].
 +
 
===USAGE===
 
===USAGE===
+
<source lang="python">
  rotate axis, angle [,selection [,state [,camera [,object [,origin]]]]]
+
rotate axis, angle [,selection [,state [,camera [,object [,origin]]]]]
+
</source>
 +
 
 +
===ARGUMENTS===
 +
'''axis'''
 +
::x, y, z, or float vector: axis about which to rotate
 +
 
 +
'''angle'''
 +
::float: degrees of rotation
 +
 
 +
'''selection'''
 +
::    string: atoms whose coordinates should be modified {default: all}
 +
'''state'''
 +
::    > 0: only the indicated state is modified
 +
::    = 0: all states are modified
 +
::    = -1: only the current state is modified {default}
 +
'''camera'''
 +
::    = 0 or 1: is the axis specific in camera coordinates? {default: 1}
 +
'''object'''
 +
::    string: object name (only if changing object matrix) {default: None}
 +
'''origin'''
 +
::    float vector: origin of rotation {default: None}
 +
 
 
===PYMOL API===
 
===PYMOL API===
<source lang="python">
+
<source lang="python">
  cmd.rotate(list-or-string axis, string selection = "all", int state = 0,
+
cmd.rotate(list-or-string axis, angle=0, string selection = "all", int state = 0,
              int camera = 1, string object = None)
+
          int camera = 1, string object = None)
</source>
+
</source>
 +
 
 
===EXAMPLES===
 
===EXAMPLES===
   
+
  rotate x, 45, pept
  rotate x, 45, pept
+
  rotate [1,1,1], 10, chain A
   
+
 
===NOTES===
+
=====Electrostatic Map Caveat=====
   
+
If you have an electrostatic map and it's not rotating with the molecule as you expect it to, see the [[Cmd turn|Turn]] command. [[Cmd turn|Turn]] moves the camera and thus the protein and map will be changed.
  if state = 0, then only visible state(s) are affected.
+
 
  if state = -1, then all states are affected.
+
===SEE ALSO===
+
[[Object_Matrix|object matrix]] [[Translate]] [[Turn]] [[Model_Space_and_Camera_Space]]
[[Category:Commands|rotate]]
+
 
 +
 
 +
[[Category:Commands|Rotate]]
 +
[[Category:States|Rotate]]

Latest revision as of 07:39, 29 March 2011

rotate can be used to rotate the atomic coordinates of a molecular object. Behavior differs depending on whether or not the object parameter is specified.

If object is None, then rotate rotates the atomic coordinates according to the axes and angle for the selection and state provided.

If object is set to an object name, then selection and state are ignored and instead of translating the atomic coordinates, the object matrix is modified. This option is intended for use in animations.

The "camera" option controls whether the camera or the model's axes are used to interpret the translation vector. To move the object relative to the camera set camera=1 (which is default), or to move the molecule relative to the model's geometry, set camera=0.

If this doesn't do what you want, consider Turn.

USAGE

rotate axis, angle [,selection [,state [,camera [,object [,origin]]]]]

ARGUMENTS

axis

x, y, z, or float vector: axis about which to rotate

angle

float: degrees of rotation

selection

string: atoms whose coordinates should be modified {default: all}

state

> 0: only the indicated state is modified
= 0: all states are modified
= -1: only the current state is modified {default}

camera

= 0 or 1: is the axis specific in camera coordinates? {default: 1}

object

string: object name (only if changing object matrix) {default: None}

origin

float vector: origin of rotation {default: None}

PYMOL API

cmd.rotate(list-or-string axis, angle=0, string selection = "all", int state = 0,
           int camera = 1, string object = None)

EXAMPLES

rotate x, 45, pept
rotate [1,1,1], 10, chain A
Electrostatic Map Caveat

If you have an electrostatic map and it's not rotating with the molecule as you expect it to, see the Turn command. Turn moves the camera and thus the protein and map will be changed.

SEE ALSO

object matrix Translate Turn Model_Space_and_Camera_Space