solid-wedge
Category: Image procedures
;;; (solid-wedge radius angle color [description]) -> image?
;;; radius : nonnegative-real?
;;; angle : real?
;;; color : color?
;;; description : string?
;;; A wedge with the given radius, angle, and color.
> (solid-wedge 40 30 "blue")
> (solid-wedge 40 90 "red")
> (solid-wedge 40 120 "green")
> (solid-wedge 40 270 "purple")
> (rotate (solid-wedge 40 30 "blue") 150)
Forthcoming
Forthcoming