vshift
Categories: Image procedures
, Image transformation procedures
;;; (vshift img amt [description]) -> image?
;;; img : image?
;;; amt : real?
;;; description : string?
;;; Shift `img` vertically down by `amt`. If `amt` is negative, shifts
;;; the image up and cuts off the top.
> (define shape (solid-circle 30 "blue"))
> (frame shape)

> (frame (vshift shape 10))

> (frame (vshift shape 20))

> (frame (vshift shape -10))

> (frame (vshift (vshift shape -10) 10))

Forthcoming
Forthcoming