!MAT PLOT POINTS, mat plot lines, mat plot area

 

DIM points (201,2)

SET WINDOW -1,1,-1,1

FOR t=0 to 2 step .01 !compute points

LET c=c+1 !count points

LET points(c,1)=sin(3*t*pi) !x-coordinate

LET points(c,2)=cos(5*t*pi) !y-coordinate

NEXT t

SET COLOR "yellow/blue"

MAT PLOT AREA:points !draw and fill in

SET COLOR "magenta"

PLOT TEXT,AT -.1,0:"MAE 5 RULES!"

END