constants.py (pymol-v1.8.6.0.tar.bz2) | : | constants.py (pymol-v2.1.0.tar.bz2) | ||
---|---|---|---|---|
skipping to change at line 221 | skipping to change at line 221 | |||
'cell' :12, | 'cell' :12, | |||
'cgo' :13, | 'cgo' :13, | |||
'callback' :14, | 'callback' :14, | |||
'extent' :15, | 'extent' :15, | |||
'slice' :16, | 'slice' :16, | |||
'angles' :17, | 'angles' :17, | |||
'dihedrals' :18, | 'dihedrals' :18, | |||
'ellipsoids' :19, | 'ellipsoids' :19, | |||
'volume' :20, | 'volume' :20, | |||
} | } | |||
repmasks = { | ||||
'everything' : 0b000111111111111111111111, | ||||
'sticks' : 0b000000000000000000000001, | ||||
'spheres' : 0b000000000000000000000010, | ||||
'surface' : 0b000000000000000000000100, | ||||
'labels' : 0b000000000000000000001000, | ||||
'nb_spheres' : 0b000000000000000000010000, | ||||
'cartoon' : 0b000000000000000000100000, | ||||
'ribbon' : 0b000000000000000001000000, | ||||
'lines' : 0b000000000000000010000000, | ||||
'mesh' : 0b000000000000000100000000, | ||||
'dots' : 0b000000000000001000000000, | ||||
'dashes' : 0b000000000000010000000000, | ||||
'nonbonded' : 0b000000000000100000000000, | ||||
'cell' : 0b000000000001000000000000, | ||||
'cgo' : 0b000000000010000000000000, | ||||
'callback' : 0b000000000100000000000000, | ||||
'extent' : 0b000000001000000000000000, | ||||
'slice' : 0b000000010000000000000000, | ||||
'angles' : 0b000000100000000000000000, | ||||
'dihedrals' : 0b000001000000000000000000, | ||||
'ellipsoids' : 0b000010000000000000000000, | ||||
'volume' : 0b000100000000000000000000, | ||||
# combinations | ||||
'licorice' : 0b000000000000000000010001, # sticks | nb_spheres | ||||
'wire' : 0b000000000000100010000000, # lines | nonbonded | ||||
} | ||||
repmasks_sc = Shortcut(repmasks) | ||||
repres_sc = Shortcut(repres.keys()) | repres_sc = Shortcut(repres.keys()) | |||
boolean_dict = { | boolean_dict = { | |||
'yes' : 1, | 'yes' : 1, | |||
'no' : 0, | 'no' : 0, | |||
'1' : 1, | '1' : 1, | |||
'0' : 0, | '0' : 0, | |||
'on' : 1, | 'on' : 1, | |||
'off' : 0 | 'off' : 0 | |||
} | } | |||
End of changes. 1 change blocks. | ||||
0 lines changed or deleted | 31 lines changed or added |