;David Parker, DPgraph/2Dgraphs/Multiple2Dinequalities/ ;annotated by gkf for Math303, UIUC 21apr03 a := 1 ;amplitude of sine wave a.minimum := -2 a.maximum := 2 b := 1 ;frequency of sine wave b.minimum := -2 b.maximum := 2 c := 1 ;phaseshift of sine wave c.minimum := -2 c.maximum := 2 d := 1 ;slope of diagonal line d.minimum := -2 d.maximum := 2 graph3d.box := true ;pizza box graph3d.mesh := true ;show facets graph3d.view := top ;red is above blue graph3d.perspective := false ;plan view graph3d.resolution := 31 ;nr tiles graph3d.highlight := 0 graph3d.shading := 0 graph3d.contrast := 1/2 graph3d.transparency := 0 graph3d.color := byheight graph3d.background := white graph3d.minimumx := -3 graph3d.maximumx := 3 graph3d.minimumy := -3 graph3d.maximumy := 3 graph3d.minimumz := -0.2 graph3d.maximumz := 0.2 graph3d(( y-0.1 ;above a negative floor , y>d*x ;above the diagonal & y>a*sin(b*x+c) ;above the sine wave & x^2+y^2>6*|sin(time/3)| ;outside pulsing disk & z>0.1 ;above a positive floor , y=d*x ;diagonal line , y=a*sin(b*x+c) ;sine-curve , x^2+y^2=6*|sin(time/3)| ;pulsating circle , x=0 ;y-axis , y=0 ;x-axis ))