This blog is under construction

Sunday 8 September 2013

Moon Rotation - Animation using C graphics

Animate moon rotation using C graphics


  #include <stdio.h>
  #include <conio.h>
  #include <graphics.h>
  #include <dos.h>
  #include <math.h>

  /* finds the location of moon on the virtual orbit around earth */
  void moonMotion(int radius, int midx, int midy, int x[60], int y[60]) {
        int i, j = 0;

        /* positions of moon around the earth */
        for (i = 360; i > 0; i = i - 6) {
                x[j] = midx - (radius * cos((i * 3.14) / 180));
                y[j++] = midy - (radius * sin((i * 3.14) / 180));
        }
        return;
  }


  int main() {
        /* request auto detection */
        int gdriver = DETECT, gmode, err;
        int midx, midy, earth, orbit, moon;
        int i = 0, x[60], y[60];

        /* initialize graphic mode */
        initgraph(&gdriver, &gmode, "C:/TURBOC3/BGI");
        err = graphresult();

        if (err != grOk) {
                /* error occurred */
                printf("Graphics Error: %s",
                                grapherrormsg(err));
                return 0;
        }

        earth = 50, orbit = 100, moon = 25;

        /* mid position in x and y-axis */
        midx = getmaxx() / 2;
        midy = getmaxy() / 2;

        /* get the positions of moon around earth for rotation */
        moonMotion(orbit, midx, midy, x, y);

        while(!kbhit()) {
                /* drawing earth at the center */
                setcolor(BLUE);
                setfillstyle(SOLID_FILL, BLUE);
                pieslice(midx, midy, 0, 360, earth);

                /* drawing virtual orbit around the earth */
                setcolor(WHITE);
                setlinestyle(DASHED_LINE, 1, 1);
                circle(midx, midy, orbit);

                /* rotate moon around the earth */
                setcolor(YELLOW);
                setfillstyle(SOLID_FILL, YELLOW);
                setlinestyle(SOLID_LINE, 1, 1);
                pieslice(x[i], y[i], 0, 360, moon);

                /* sleep for 200 milliseconds */
                delay(200);

                /* clears the graphic screen */
                cleardevice();

                /* checks for one complete rotation */
                i = (i + 1) % 60;
        }

        /* deallocate memory allocated for graphic screen */
        closegraph();

        return 0;
  }





Output: (Moon Rotation - Animation using C graphics)


6 comments:

  1. soler system moon and earth rotation
    please give me code

    ReplyDelete
  2. Thanks, I have no words asking for you thanking

    ReplyDelete
  3. If(err!=grok) error occured undefined symbol grok how to solve

    ReplyDelete
  4. Please can you tell me the introduction for this project

    ReplyDelete
  5. will u give any information about kbhit() this function ..

    ReplyDelete