I'm doing this with org-mode and geiser (latest elpa versions of both):
#+name:3d-plot-1
#+begin_src scheme :session mainsession :exports both :tangle yes :cache yes
(require math/flonum)
(require plot)
(plot3d (contour-intervals3d (λ (b x) (fllogb (fl b) (fl x))) 0 4 0 4)
#:x-label "b" #:y-label "x")
#+end_src
with this result:
#+RESULTS[2d14189b00fd486def9082476fc9eabffb48c337]: 3d-plot-1
: "#<Image: /var/tmp/geiser-img-15035167321503516732263.png>"
Now, can I control where this image is sent? If so, is this an org-mode thing, or is it controlled by geiser?
Thanks,
LB