[PyMOL] Outlines thickness

2020-05-06 Thread Gianluca Tomasello
Hi, is there a proper way to increase outlines thickness in PyMol? I noticed that increasing ray_trace_gain setting outlines are drawn thicker but increasing this setting increases also the number of outlines. Is there a way to increase thickness without increasing the outlines number? __

Re: [PyMOL] Capturing scene pixels without writing image to disk

2020-05-06 Thread Antonio Serrano
Thx for your quick response, Thomas. Please, could you elaborate the previous example a little bit further? I'm a little confused about what you can accomplish using the callback function you posted. Thx -- "Este mensaje es privado y confidencial y se dirige exclusivamente a su destinatario. Si

Re: [PyMOL] Capturing scene pixels without writing image to disk

2020-05-06 Thread Thomas Holder
Hi Antonio, This is currently not possible for ray tracing or for capturing the displayed image. It's possible for deferred on-screen rendering with a callback. def mycallback(image): print("got image of dimension", image.shape) cmd.raw_image_callback = mycallback cmd.draw() Cheers, Th