Question:

what is thealgorithym for area of circle ?

by Guest5046  |  12 years, 9 month(s) ago

0 LIKES UnLike

what is thealgorithym for area of circle ?

tell

 Tags: Circle, thealgorithym

   Report

1 ANSWERS

  1. amomipais82
    Hi There,
    The algorithm starts accordingly with the circle equation x2 + y2 = r2. We consider first only the first octant and draw a curve which starts at point (r,0) and proceeds upwards and to the left, reaching the angle of 45°.

    The "fast" direction here is the y direction. The algorithm always does a step in the positive y direction (upwards), and every now and then also has to do a step in the "slow" direction, the negative x direction.

    The frequent computations of squares in the circle equation, trigonometric expressions or square roots can again be avoided by dissolving everything into single steps and recursive computation of the quadratic terms from the preceding ones.

    From the circle equation we obtain the transformed equation x2 + y2 − r2 = 0, where r2 is computed only a single time during initialization:

        \begin{align} x_{n+1}^2 &= (x_n - 1)^2 \\ &= x_n^2 - 2x_n + 1 \end{align}

    and accordingly for the y-coordinate. Additionally we need to add the midpoint coordinates when setting a pixel. These frequent integer additions do not limit the performance much, as we can spare those square (root) computations in the inner loop in turn. Again the zero in the transformed circle equation is replaced by the error term.

    The initialization of the error term is derived from an offset of ½ pixel at the start. Until the intersection with the perpendicular line, this leads to an accumulated value of r in the error term, so that this value is used for initialization.

    A possible implementation of the Bresenham Algorithm for a full circle in C. Here another variable for recursive computation of the quadratic terms is used, which corresponds with the term 2n + 1 above. It just has to be increased by 2 from one step to the next:

    void rasterCircle(int x0, int y0, int radius)
    {
      int f = 1 - radius;
      int ddF_x = 1;
      int ddF_y = -2 * radius;
      int x = 0;
      int y = radius;

      setPixel(x0, y0 + radius);
      setPixel(x0, y0 - radius);
      setPixel(x0 + radius, y0);
      setPixel(x0 - radius, y0);

      while(x < y)
      {
        // ddF_x == 2 * x + 1;
        // ddF_y == -2 * y;
        // f == x*x + y*y - radius*radius + 2*x - y + 1;
        if(f >= 0)
        {
          y--;
          ddF_y += 2;
          f += ddF_y;
        }
        x++;
        ddF_x += 2;
        f += ddF_x;    
        setPixel(x0 + x, y0 + y);
        setPixel(x0 - x, y0 + y);
        setPixel(x0 + x, y0 - y);
        setPixel(x0 - x, y0 - y);
        setPixel(x0 + y, y0 + x);
        setPixel(x0 - y, y0 + x);
        setPixel(x0 + y, y0 - x);
        setPixel(x0 - y, y0 - x);
      }
    }

    Note: There is correlation between this algorithm and the sum of first N odd numbers, which this one basically does. That is, 1+3+5+7+9+\cdots = \sum_{n=0}^N{2n+1} = (N+1)^2.

    So.
    When we compare sum of N odd numbers to this algorithm we have.
    ddF_y = -2 * radius       is connected to last member of sum of N odd numbers.
                               This member has index equal to value of radius (integral).
                               Since odd number is 2*n + 1 there is 1 handled elsewhere
                               or it should be -2*radius - 1
    ddF_x = 0                 should be 1. Because difference between two consecutive odd numbers is 2.
                               If so f += ddF_y + 1 is f+= ddF_y. Saving one operation.
    f = - radius + 1          Initial error equal to half of "bigger" step.
                               In case of saving one addition it should be either -radius or -radius + 2.
    In any case there should be addition of 1 driven out of outer loop.
    So.
    f += ddF_y                Adding odd numbers from Nth to 1st.
    f += ddF_x                Adding odd numbers from 1st to Nth. 1 is missing because it can be moved outside of loop

Sign In or Sign Up now to answser this question!

Question Stats

Latest activity: 14 years, 4 month(s) ago.
This question has 1 answers.

BECOME A GUIDE

Share your knowledge and help people by answering questions.