You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have coded up the necessary parts to Weave Makie plots. Unfortunately I've never done a pull request before, not sure where to start. I can drop the code here, or with some help I can create a proper pull request.
For the most part the code is straight forward, but I do see one potential issue: the capture_output(code, mod, path, error, report) function needs to call display(report, obj) rather than just display(obj). For some reason, if the obj is a Makie.Figure, it get's somehow mangled and converted to a Makie.Scene on the way to calling display(report, obj). Is there any consequence to calling the former rather than the later?
The text was updated successfully, but these errors were encountered:
I have coded up the necessary parts to Weave Makie plots. Unfortunately I've never done a pull request before, not sure where to start. I can drop the code here, or with some help I can create a proper pull request.
For the most part the code is straight forward, but I do see one potential issue: the
capture_output(code, mod, path, error, report)
function needs to calldisplay(report, obj)
rather than justdisplay(obj)
. For some reason, if theobj
is aMakie.Figure
, it get's somehow mangled and converted to aMakie.Scene
on the way to callingdisplay(report, obj)
. Is there any consequence to calling the former rather than the later?The text was updated successfully, but these errors were encountered: