mailr5085 - /1.3/generic_fns/structure.py


Others Months | Index by Date | Thread Index
>>   [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Header


Content

Posted by edward on February 21, 2008 - 10:24:
Author: bugman
Date: Thu Feb 21 10:23:52 2008
New Revision: 5085

URL: http://svn.gna.org/viewcvs/relax?rev=5085&view=rev
Log:
The circle part of the cone is now zipped up.


Modified:
    1.3/generic_fns/structure.py

Modified: 1.3/generic_fns/structure.py
URL: 
http://svn.gna.org/viewcvs/relax/1.3/generic_fns/structure.py?rev=5085&r1=5084&r2=5085&view=diff
==============================================================================
--- 1.3/generic_fns/structure.py (original)
+++ 1.3/generic_fns/structure.py Thu Feb 21 10:23:52 2008
@@ -365,9 +365,14 @@
         # Add the vector as a H atom of the CON residue.
         atom_add(atomic_data=atomic_data, atom_id=atom_id, 
record_name='HETATM', atom_name='H'+`atom_num`, res_name='CON', 
res_num=res_num, pos=pos, element='H')
 
-        # Connect across the radial arrays (to generate the latitudinal 
lines).
+        # Connect across the radial array (to generate the circular cone 
edge).
         if i != 0:
             neighbour_id = 'T' + `i-1`
+            atom_connect(atomic_data=atomic_data, atom_id=atom_id, 
bonded_id=neighbour_id)
+
+        # Connect the last radial array to the first (to zip up the circle).
+        if i == inc-1:
+            neighbour_id = 'T' + `0`
             atom_connect(atomic_data=atomic_data, atom_id=atom_id, 
bonded_id=neighbour_id)
 
         # Increment the atom number.




Related Messages


Powered by MHonArc, Updated Thu Feb 21 10:40:57 2008