<div dir="ltr">re ctrl-click: yes I was originally using place marker (sorry not sphere) on surface + ctrl-click + delete marker to emulate this behavior, if that makes sense.<div>Anyways, Awesome! Thanks so much, can't wait for the nightly!</div><div>~Dan</div></div><div class="gmail_extra"><br><div class="gmail_quote">On Wed, Aug 30, 2017 at 6:10 PM, Tom Goddard <span dir="ltr"><<a href="mailto:goddard@sonic.net" target="_blank">goddard@sonic.net</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Hi Dan,<br>
<br>
  Thanks for the code.  You know ctrl-click with the right mouse button centers on the clicked atoms?  It also centers when you click on a surface, but it uses the center of the entire surface instead of the point you clicked on.  It seems like it would be more useful to center on the surface point you clicked on so I changed the code to do that — will be in tonight’s Chimera builds.  I think this is better than using a keyboard shortcut since few people enable the keyboard shortcuts.<br>
<br>
        Tom<br>
<div><div class="h5"><br>
<br>
> On Aug 30, 2017, at 11:44 AM, Daniel P Farrell wrote:<br>
><br>
> Hello,<br>
><br>
> I found myself constantly needing to re-center on different regions of EM density maps, and I was originally just dropping spheres on the surface, centering on those, then deleting them.  Finally I got sick of that and wrote this. It will center the window on the surface of whatever surface the mouse is currently overlaying.<br>
><br>
> I found this to be a very helpful addition when looking at large EM maps, and was thinking other people might too, after using it for a while I feel as though it could be part of trunk since I use it so much.<br>
><br>
><br>
> basically it would require the addition of this to standard_accelerators.py<br>
><br>
> ... other accelerators..<br>
><br>
>     ('zx', 'Center view on surface where mouse is located', center_on_surface_at_mouse),<br>
><br>
> ... zx because it's close to where you rest your hands on the keyboard...<br>
><br>
> def center_on_surface_at_mouse():<br>
>   from chimera import selection, tkgui<br>
>   hits = []<br>
>   w = tkgui.app.graphics<br>
>   x = w.winfo_pointerx() - w.winfo_rootx()<br>
>   y = w.winfo_pointery() - w.winfo_rooty()<br>
>   from Surface import surface_models<br>
>   import VolumePath.tracer as tracer<br>
>   hits.extend(tracer.surface_<wbr>intercepts(x, y, surface_models()))<br>
>   xyz, model = tracer.closest_hit(hits)<br>
>   print(xyz)<br>
>   if xyz:<br>
>     print('cofr %f,%f,%f' % (xyz[0],xyz[1],xyz[2]))<br>
>     chimera.runCommand('cofr %f,%f,%f' % (xyz[0],xyz[1],xyz[2]))<br>
>     chimera.viewer.camera.center = xyz<br>
><br>
> cheers!<br>
> ~Dan<br>
><br>
><br>
><br>
><br>
</div></div>> ______________________________<wbr>_________________<br>
> Chimera-users mailing list: <a href="mailto:Chimera-users@cgl.ucsf.edu">Chimera-users@cgl.ucsf.edu</a><br>
> Manage subscription: <a href="http://plato.cgl.ucsf.edu/mailman/listinfo/chimera-users" rel="noreferrer" target="_blank">http://plato.cgl.ucsf.edu/<wbr>mailman/listinfo/chimera-users</a><br>
<br>
</blockquote></div><br></div>