hflip
Categories: Image procedures
, Image transformation procedures
;;; (hflip img [description]) -> image?
;;; img : image?
;;; description : string?
;;; Flip `img` horizontally.
> (define img1 (beside (solid-square 30 "black") (outlined-square 24 "black" 3)))
> img1

> (hflip img1)

> (define img2 (rotate (solid-rectangle 40 20 "red") 15))
> img2

> (hflip img2)

Forthcoming
Forthcoming