/* The source code for generating the above plot */
#include
#include
#define NUM1 360
#define NUM2 10
int main() {
int i;
double x0[NUM1], y0[NUM1];
double x1[NUM1], y1[NUM1];
double x2[NUM2], y2[NUM2];
double x3[NUM1], y3[NUM1];
int line_type=0, line_width =5;
class CPlot plot;
for(i=0; i
|