Re: [racket-users] put-image

2021-02-07 Thread Robby Findler
Okay, I've added it. It is pretty straightforward to define it in your own code in the meantime, Patrick: (define (put-image i1 x y i2) (place-image i1 x (- (image-height i2) y) i2)) Robby On Sun, Feb 7, 2021 at 5:32 AM Stephen De Gabrielle wrote: > +1 > > > On Sun, 7 Feb 2021 at 03:41,

Re: [racket-users] put-image

2021-02-07 Thread Stephen De Gabrielle
+1 On Sun, 7 Feb 2021 at 03:41, Robby Findler wrote: > Any objection to adding it to 2htdp/image? > > Robby > > On Sat, Feb 6, 2021 at 6:32 PM Sorawee Porncharoenwase < > sorawee.pw...@gmail.com> wrote: > >> As explained in documentation of WeScheme >>

Re: [racket-users] Coordinates in draw and pict

2021-02-07 Thread Stephen De Gabrielle
I’m not sure but the way to check would be using draw-pict to put a pict in a draw canvas procedure (draw-pict pict dc x y) → void?