ellipse function

Ellipse is used to draw an ellipse (x,y) are coordinates of center of the ellipse, stangle is the starting angle, end angle is the ending angle, and fifth and sixth parameters specifies the X and Y radius of the ellipse.
एल्लिप्स फंक्शन की सहायता से एक केंद्र, एक प्रारंभिक कोण, एक अंतिम कोण, एक त्रिज्या X एवं एक त्रिज्या Y का प्रयोग कर दीर्घवृत तैयार किया जा सकता है। 

Syntax:-
void ellipse(int x, int y, int stangle, int endangle, int xradius, int yradius);

Program:-
#include<graphics.h>
#include<conio.h>
int main()
{
   int gd = DETECT, gm;
   initgraph(&gd, &gm, "C:\\TC\\BGI");
   ellipse(100, 100, 0, 360, 50, 25);
   getch();
   closegraph();
   return 0;
}

No comments:

Post a Comment