[racket] rotate an image using 2htdp/image

From: Mathew Kurian (bluejamesbond at gmail.com)
Date: Tue Jul 20 01:07:58 EDT 2010

@Robby Findler : I see what you mean. But in this example given by Paul
Ojanen
 (require 2htdp/image)
(require 2htdp/universe)

(define BACKGROUND (rectangle 100 100 "outline" "white"))
(define TRI (triangle 35 "solid" "blue"))

(define (render ang)
 (place-image (rotate ang TRI) 20 20 BACKGROUND))

(define (tock ang)
 (modulo (+ ang 10) 360))

(big-bang 0 (on-draw render) (on-tick tock))

The triangle is not being consistent by keeping its center point on the
center of BACKGROUND.

Hopefully, this makes sense.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.racket-lang.org/users/archive/attachments/20100720/ff09c220/attachment.html>

Posted on the users mailing list.