This is a read-only mirror of pymolwiki.org
Difference between revisions of "Util.mroll"
Jump to navigation
Jump to search
m (→EXAMPLE) |
m (5 revisions) |
||
(3 intermediate revisions by one other user not shown) | |||
Line 13: | Line 13: | ||
util.mroll(1,120,1) # issues [[mdo]] commands to create full rotation over 120 frames | util.mroll(1,120,1) # issues [[mdo]] commands to create full rotation over 120 frames | ||
mpng # outputs png files of rotation | mpng # outputs png files of rotation | ||
+ | |||
+ | === SEE ALSO === | ||
+ | *[http://pymol.sourceforge.net/newman/user/S0300movies.html PyMOL Movie Page] | ||
+ | *[[Slerpy]] | ||
+ | *[[Making_Movies]] |
Latest revision as of 04:07, 28 March 2014
DESCRIPTION
util.mroll issues mdo commands to create full rotation
USAGE
util.mroll(start, finish, loop-flag)
EXAMPLE
In this next example, the protein is rotated through a full 360 sweep about the Y-axis over 120 frames
load test/dat/pept.pdb # load a structure mset 1 x120 # define the movie util.mroll(1,120,1) # issues mdo commands to create full rotation over 120 frames mpng # outputs png files of rotation