racket/collects/plot/demos/demo-5.ss
Eli Barzilay ed0974616b plot tests adjusted and passed
svn: r9769
2008-05-09 16:12:30 +00:00

8 lines
196 B
Scheme

#lang scheme
(require plot)
(define (trig x y) (* (sin x) (sin y)))
(plot (shade trig)
#:x-min -1.5 #:x-max 1.5 #:y-min -1.5 #:y-max 1.5
#:title "shdade of F(x,y) = sin(x) * sin(y)")