how to rotate the object(circle) in ellipse

how to rotate the object(circle) in ellipse
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19

/

main()
{
   int gd = DETECT, gm;

   initgraph(&gd, &gm, "e:\\TC\\BGI");
     ellipse(250, 200, 0, 360, 50, 25);
 setfillstyle(5,1);
   setcolor(RED);
   circle(250,225,5);
   floodfill(250,225,RED);
 
   getch();

   closegraph();
   return 0;
		     }
plz help
You're using non-standard functions from some non-standard graphics library. We can't help you if we don't even know what graphics library you're using.
I don't get what he's trying to do.
like solar system.A rotating planet on ellispe
Topic archived. No new replies allowed.