Re: [chimera-dev] camera positions

Hi Matt, Take a look at the _savePosition() routine in chimera/share/Midas/__init__.py that defines the contents of each position: return ( viewer.scaleFactor, viewer.viewSize, cam.center, cam.nearFar, cam.focal, xforms, clips, om.cofrMethod, cofr, viewer.clipping, cam.fieldOfView, ) These are the fields you see in the session file. Notice it has the camera focal plane position (cam.focal) but no eye separation parameter. Tom On Dec 5, 2013, at 5:09 AM, "Dougherty, Matthew T" wrote:
Hi Tom,
I was looking at a typical savepos as it is saved as a session file, below
Can you tell me how to interpret it contents? Trying to understand what parameters are kept.
Matthew Dougherty National Center for Macromolecular Imaging Baylor College of Medicine
def restoreMidasBase(): formattedPositions = {'cPos': (1.0, 5.706403395613076, (105.314, 50.822, 41.951), (43.72859999036789, 40.17340000963211), 41.951, {(0, 0): ((0.0, 0.0, 0.0), (0.0, 0.0, 1.0, 0.0))}, {(0, 0, 'Molecule'): (False, 0.0, 0.0, 0.0, 0.0, 0.0, 0.0, False, 5.0)}, 4, (105.314, 50.822, 41.951), False, 7.8352333034904085)} import Midas Midas.restoreMidasBase(formattedPositions)
participants (1)
-
Tom Goddard