Difference between revisions of "Redo"

From PyMOLWiki
Jump to navigation Jump to search
 
(Incentive PyMOL 2.5 redo)
 
(5 intermediate revisions by 3 users not shown)
Line 1: Line 1:
===DESCRIPTION===
+
''(Incentive PyMOL only feature)''
+
 
  "redo" reapplies the conformational change of the object currently
+
See [[undo]] for guidance on PyMOL's undo feature.
  being edited.
+
 
+
== Usage ==
===USAGE===
+
redo [, steps]
+
 
  redo
+
* '''steps''' = integer: number of steps to undo
+
 
===SEE ALSO===
+
== PyMOL API ==
+
<source lang="python">
  undo, push_undo
+
cmd.redo(int steps=1)
+
</source>
[[Category:Commands|redo]]
+
 
 +
== Example ==
 +
  redo
 +
  redo 5
 +
 
 +
== SEE ALSO ==
 +
[[Undo]]
 +
 
 +
[[Category:Commands|Redo]]
 +
[[Category:Editing Module|Redo]]

Latest revision as of 13:12, 29 April 2021

(Incentive PyMOL only feature)

See undo for guidance on PyMOL's undo feature.

Usage

redo [, steps]
  • steps = integer: number of steps to undo

PyMOL API

cmd.redo(int steps=1)

Example

 redo
 redo 5

SEE ALSO

Undo