#include
#include
#include
#define TRUE 1
#define FALSE 0
int main()
{
/* variable declarations */
/* file read/write variables */
typedef int bool;
bool transpose;
/* temporary "shuffle" variable used to transpose coordinates */
float tempcoord;
/* variables declared from input */
float x1, y1, x2, y2;
int i, numcirc;
float circlex[15], circley[15], radius[15];
/* variables for internal use */
float slope, yint, rsquare, discrim, theta;
float aterm, bterm, cterm;
float u, j, v, w, high, low;
float total, chord, arc;
float intx1[15], intx2[15], inty1[15], inty2[15];