circle.h 231 B

1234567891011
  1. /*
  2. * A simple user-defined type "circle". The fields include its (x,y)
  3. * coordinate and its radius.
  4. */
  5. typedef struct circle
  6. {
  7. mi_double_precision x;
  8. mi_double_precision y;
  9. mi_double_precision radius;
  10. } circle_t;