// Make a dataset with two overlapping circles. // Time-stamp: #include #include #include using namespace std; /* ABS */ template inline T abs(const T a) { return (a>=0) ? a : -a; } /* MAX */ template inline T max(const T x, const T y) { return (x > y) ? x : y; } /* MIN */ template inline T min(const T x, const T y) { return (x < y) ? x : y; } const int nrows=1201; const int c1x=400; const int c1y=600; const int c2x=800; const int c2y=600; main() { int k=0; for (int i=0; i