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?
__
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
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