Re: [racket] displaying images frame by frame in the same window in Racket

2014-07-10 Thread Matthew Flatt
At Wed, 9 Jul 2014 15:02:09 +0530, Animesh Pandey wrote: > I have three small images of same size. I want to display them one > after another. I'm not completely sure of your goal, but I think you probably meant to send `bird-bitmap` to `draw-bitmap-section` in each step. One way way to add to th

[racket] displaying images frame by frame in the same window in Racket

2014-07-09 Thread Animesh Pandey
I have three small images of same size. I want to display them one after another. (define new1-bitmap (make-bitmap (send bird-bitmap get-width) (send bird-bitmap get-height))) (define dc-crop (new bitmap-dc% [bitmap new1-bitmap])) (define f-crop (new frame% [label "Random"])) (send f-cr