Re: [PyMOL] Outlines thickness

2020-05-07 Thread Gianluca Tomasello
Hi Adam, Thanks for your response. As I imagined there isn't an easy way of doing this. I'll play around with settings and try to find a good compromise. On Thu, 7 May 2020, 17:02 h. adam steinberg, wrote: > I also use this feature for illustrations and would love to find a better > way of

Re: [PyMOL] Outlines thickness

2020-05-07 Thread h. adam steinberg
I also use this feature for illustrations and would love to find a better way of controlling the outline thickness. Could anyone fill us in on the history of this feature? In Chimera black outline is just a simple slider and it’s super easy to use. You just move the slider up and down and it

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

2020-05-07 Thread Thomas Holder
Calling cmd.draw() will schedule a rendering event to be executed in the rending loop. This means the command will return before the image was rendered. The only way to access the result is with a callback, which will be asynchronous with the script you're executing. Calling cmd.png() is