how to rotate the object(circle) in ellipse
Sep 6, 2012 at 1:52am UTC
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;
}
Sep 6, 2012 at 1:14pm UTC
plz help
Sep 6, 2012 at 1:44pm UTC
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.
Sep 6, 2012 at 3:58pm UTC
I don't get what he's trying to do.
Sep 9, 2012 at 2:49pm UTC
like solar system.A rotating planet on ellispe
Topic archived. No new replies allowed.