Changes between Version 19 and Version 20 of ChimeraAnimationState


Ignore:
Timestamp:
Jan 21, 2011, 12:24:39 PM (15 years ago)
Author:
Darren Weber
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • ChimeraAnimationState

    v19 v20  
    337337
    338338
    339 ==== openState attributes ====
     339=== openState attributes ===
    340340
    341341Get the !OpenState attributes of a model: {{{chimera.openModels.openState(id: int, subid: int)}}}
    342342
    343343From the [http://www.cgl.ucsf.edu/chimera/docs/ProgrammersGuide/faq.html FAQ], item (10):  The openState attribute of a Model controls whether that model is active for motion ('.active'), and contains the model's transformation matrix ('.xform') and center of rotation ('.cofr'). Since some models must move in synchrony (e.g. a molecule and its surface), !OpenState instances may be shared among multiple models. If you create a model that needs a shared openState with another model, then when adding your model to the list of open models with chimera.openModels.add(), you should use the 'sameAs' keyword to specify the other model.
    344 
    345 
    346 
    347 
    348344
    349345==== openState.xform ====
     
    360356...
    361357
    362 }}}
    363 
    364 
    365 
     358>>> for m in models:
     359        chimera.openModels.openState(m.id, m.subid).xform
     360}}}