<html><head><meta http-equiv="Content-Type" content="text/html; charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Hi Albert,<div class=""><br class=""></div><div class="">  Not sure if you are talking about using a modified version that spherical Python code in Chimera or using it in ChimeraX.  I'll assume ChimeraX.</div><div class=""><br class=""></div><div class=""><a href="http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics" class=""><span class="Apple-tab-span" style="white-space:pre">      </span>http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics</a><br class=""><div><br class=""></div><div>It is much easier to shift and rotate the vertices than your approach.  Python numpy arrays make this very convenient.  After the line of code that makes the numpy array of vertices</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">      </span>va = array(vertices, float32)</div><div><br class=""></div><div>you could shift it to a new origin with just</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">     </span>va += (32.5, 13, -24.1)</div><div><br class=""></div><div>Rotation is also easy.  </div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">  </span>from chimerax.geometry import rotation</div><div><span class="Apple-tab-span" style="white-space:pre">       </span>r = rotation(axis = (0,1,0), angle = 45)</div><div><span class="Apple-tab-span" style="white-space:pre">        </span>va = r * va</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>na = r * na</div><div><br class=""></div><div>Here I rotate the vertices and the normal vectors about 0,0,0.  Then I could apply the translation after that.  You might want to do a rotation given by a 3 by 3 rotation matrix and the translation in one step, like this</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">     </span>from chimerax.geometry import Place</div><div><span class="Apple-tab-span" style="white-space:pre">  </span>t = Place(matrix = ((0,1,0, 32.5),</div><div><span class="Apple-tab-span" style="white-space:pre">                                   </span>(-1,0,0, 13),</div><div><span class="Apple-tab-span" style="white-space:pre">                                        </span>(0,0,1, -24.1)))</div><div><div><span class="Apple-tab-span" style="white-space: pre;">        </span>t.transform_points(va, in_place = True)</div><div><span class="Apple-tab-span" style="white-space: pre;">    </span>t.transform_vectors(na, in_place = True)</div></div><div><br class=""></div><div>Here I used a 3 by 4 matrix where the first 3 columns were the rotation and the 4th column is the translation.  I'll update the example code to show this.  These geometric transforms are described in the ChimeraX Python programming documentation:</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">  </span><a href="https://www.cgl.ucsf.edu/chimerax/docs/devel/bundles/geometry/src/geometry.html" class="">https://www.cgl.ucsf.edu/chimerax/docs/devel/bundles/geometry/src/geometry.html</a></div><div><br class=""></div><div>  As for what went wrong with you np.array([x0,y0,z0]).T approach -- that transpose operation put the vertices in a non-standard memory order -- you created a 3 by N array and then did a transpose to get an N by 3 array but numpy is smart and does not allocate a new array and instead just adjusts the strides and uses the original array.  My guess is the calculate_surface_normals() code has a bug in that it does not handle non-standard orders for the vertex array.  So the normals were completely wrong and that effects the lighting.</div><div><br class=""></div><div>  In the ChimeraX Python shell (menu Tools / General / Shell) the variable "session" is the ChimeraX session.</div><div><br class=""></div><div><span class="Apple-tab-span" style="white-space:pre">  </span>Tom</div><div><br class=""></div><div><br class=""><blockquote type="cite" class=""><div class="">On Aug 31, 2020, at 2:43 PM, Albert Smith-Penzel <<a href="mailto:Albert.Smith-Penzel@medizin.uni-leipzig.de" class="">Albert.Smith-Penzel@medizin.uni-leipzig.de</a>> wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html; charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">Dear all,<div class=""><br class=""></div><div class="">Thanks for such quick replies and helpful answers. I had two follow-up questions on the approach that Tom suggested in ChimeraX.</div><div class=""><br class=""></div><div class="">The first is maybe a glitch, or more likely something I don’t fully understand in python/chimera.</div><div class=""><br class=""></div><div class="">In the code Tom links to (<a href="http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics" class="">http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics</a>), a list of vertices (x,y,z tuples) is created. Suppose I want to shift the center of the spherical harmonic and/or rotate it. One way to do this is to extract x,y,z from the vertices list and modify them, then put them back in the list. My first step is to switch the tuple to a list in the code (switch <span style="font-size: 13px; white-space: pre-wrap; background-color: rgb(247, 247, 247);" class="">xyz = (r*sp*ct, r*sp*st, r*cp) to </span><span style="font-size: 13px; white-space: pre-wrap; background-color: rgb(247, 247, 247);" class="">xyz = [r*sp*ct, r*sp*st, r*cp] </span>). Then I extract the elements, do some editing, and then put them back into a list of vertices.</div><div class=""><br class=""></div><div class="">x0,y0,z0=np.array(vertices).T</div><div class="">#Some editing of x0,y0,z0 - although editing is not required to produce the strange effects.</div><div class="">vertices=np.array([[x,y,z] for x,y,z in zip(x0,y0,z0)])</div><div class=""><div class="">#vertices=np.array([x0,y0,z0]).T</div></div><div class=""><br class=""></div><div class="">Finally, I need to reconstruct the vertices list. The first approach (currently uncommented) works just fine. The second approach (commented) doesn’t create any errors, but the lighting is very strange, in that there are alternating dark and light areas on the surface of the harmonic. I would have claimed that the two approaches should produce practically identical numpy arrays, but clearly that’s not the case.</div><div class=""><br class=""></div><div class="">Anyway, it’s not particularly important for me, since I can work around it, but it does take some time to figure out, because one would think the latter approach should also work.</div><div class=""><br class=""></div><div class="">The second question is: is it possible to get the “session” object into an interactive python session? Usually, I work interactively with python, and have a number of functions that create various scripts and input files for chimera, and then launch chimera from a shell, calling some script on startup. While this works, it would be really nice if one could manipulate an existing chimera session (maybe a bit off of the original topic now).</div><div class=""><br class=""></div><div class="">In any case, the new graphics with the tensors come out very nicely- thanks so much for your help.</div><div class=""><br class=""></div><div class="">Cheers,</div><div class="">Albert</div><div class=""><br class=""></div><div class=""><br class=""></div><div class=""><div class=""><br class=""><blockquote type="cite" class=""><div class="">On 28. Aug 2020, at 20:58, Tom Goddard <<a href="mailto:goddard@sonic.net" class="">goddard@sonic.net</a>> wrote:</div><br class="Apple-interchange-newline"><div class="">
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" class="">

<div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
<div style="background-color: rgb(255, 235, 156); width: 100%; border: 1pt solid rgb(156, 101, 0); padding: 2pt; font-size: 10pt; line-height: 12pt; font-family: Calibri; text-align: left;" class="">
<span style="color:#9C6500; font-weight:bold;" class="">WARNUNG:</span> Diese E-Mail kam von außerhalb der Organisation. Klicken Sie nicht auf Links oder öffnen Sie keine Anhänge, es sei denn, Sie kennen den Absender und wissen, dass der Inhalt sicher ist.
</div>
<br class="">
<div class="">Hi Albert,
<div class=""><br class="">
</div>
<div class="">  You need finer phi and theta steps to get a smoother appearance.  I found that 10 degree steps gives chunky appearance, while 3 degree steps givs smooth appearance.  Chimera does not have code to make an arbitrary surface smoother.</div>
<div class=""><br class="">
</div>
<div class="">  Maybe you are interested in making these surfaces all in Python instead of using BILD.  Here is how it is done in our newer ChimeraX program.</div>
<div class=""><br class="">
</div>
<div class=""><span class="Apple-tab-span" style="white-space:pre"></span><a href="http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics" class="">http://plato.cgl.ucsf.edu/trac/chimera/wiki/SphericalHarmonics</a></div>
<div class=""><br class="">
</div>
<div class="">  Tom</div>
<div class=""><br class="">
</div>
<div class=""><span id="cid:939E450C-16C8-49F4-BC2F-7A8E2E5F7291" class=""><harmonics.png></span><br class="">
<div class=""><br class="">
<blockquote type="cite" class="">
<div class="">On Aug 28, 2020, at 1:54 AM, Albert Smith-Penzel <<a href="mailto:Albert.Smith-Penzel@medizin.uni-leipzig.de" class="">Albert.Smith-Penzel@medizin.uni-leipzig.de</a>> wrote:</div>
<br class="Apple-interchange-newline">
<div class="">
<div style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
<div dir="auto" style="word-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;" class="">
Hello,
<div class=""><br class="">
</div>
<div class="">I have a question about improving user defined graphics in Chimera.</div>
<div class=""><br class="">
</div>
<div class="">For background (maybe not necessary for answering):</div>
<div class="">I’m working with nuclear magnetic resonance and MD simulation, and so I want to plot dynamically averaged spin-spin (H–C) dipole tensors, obtained from MD, on top of the corresponding H–C bonds. I’ve been relatively successful, but while one has
 a very high-resolution picture of the molecule itself, the tensors themselves are visibly triangulated.</div>
<div class=""><br class="">
</div>
<div class="">How I get this plot:</div>
<div class="">Each tensor is expressed first in spherical coordinate (theta, phi, r). In python, I run Delauney from scipy.spatial on theta and phi to get a list of vertices that can be used for triangulation of the tensor. Then, for each tensor, I convert
 theta, phi, and r into cartesian coordinates, shift the center so that the tensor sits on top of the correct bond. Finally, I create a .bild file where I write out each triangle using the coordinates and vertices. Tensors have negative and positive values
 (red and blue in the plot), and so I only take triangles for which r for all vertices is positive, and then in a second step, take only triangles where all vertices are negative. This all gets written to the .bild file, and then opened in chimera on top of
 the molecule (see picture).</div>
<div class=""><br class="">
</div>
<div class="">The question:</div>
<div class="">The result is certainly acceptable, however, there is clearly a quality difference in the molecule rendering vs. the tensor rendering (obviously, because the tensors are just made of triangles that I’ve created in python). Is there a better way
 to bring the surface data describing the tensors into chimera that would then allow usage of some sort of smoothing within chimera for a nicer image? (And possibly with a relatively simple data format….)</div>
<div class=""><br class="">
</div>
<div class="">Thanks for your help!</div>
<div class=""><br class="">
</div>
<div class="">Cheers,</div>
<div class="">Albert Smith</div>
<div class=""><br class="">
</div>
<div class=""><span id="cid:9956C594-C972-4C35-8662-7C00F4B5029B@wlan.intern.uni-leipzig.de" class=""><example_triangulation.png></span></div>
</div>
</div>
_______________________________________________<br class="">
Chimera-users mailing list: <a href="mailto:Chimera-users@cgl.ucsf.edu" class="">
Chimera-users@cgl.ucsf.edu</a><br class="">
Manage subscription: <a href="https://www.rbvi.ucsf.edu/mailman/listinfo/chimera-users" class="">
https://www.rbvi.ucsf.edu/mailman/listinfo/chimera-users</a><br class="">
</div>
</blockquote>
</div>
<br class="">
</div>
</div>
</div>

</div></blockquote></div><br class=""></div></div>_______________________________________________<br class="">Chimera-users mailing list: <a href="mailto:Chimera-users@cgl.ucsf.edu" class="">Chimera-users@cgl.ucsf.edu</a><br class="">Manage subscription: <a href="https://www.rbvi.ucsf.edu/mailman/listinfo/chimera-users" class="">https://www.rbvi.ucsf.edu/mailman/listinfo/chimera-users</a><br class=""></div></blockquote></div><br class=""></div></body></html>