Changes between Initial Version and Version 1 of ChimeraAnimationTasks


Ignore:
Timestamp:
Dec 8, 2010, 1:45:11 PM (15 years ago)
Author:
Darren Weber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ChimeraAnimationTasks

    v1 v1  
     1
     2== State Parameters and Transitions ==
     3
     4Something like this gains access to a lot of view parameters:
     5{{{
     6for n in dir(chimera.viewer): print n, eval('type(chimera.viewer.%s)' % n)
     7}}}
     8
     9Some tips in the [http://www.cgl.ucsf.edu/chimera/docs/ProgrammersGuide/faq.html programming FAQ] are useful (esp, items 4, 5, 7-10).  Note, take a look at the code for {{{chimera.update.checkForChanges()}}}, as this may be helpful in detecting changes for transitions and for checking the validity of state parameters.
     10