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

> (frame (hshift shape 10))

> (frame (hshift shape 20))

> (frame (hshift shape -10))

> (frame (hshift (hshift shape -10) 10))

Forthcoming
Forthcoming