The header file graphics.h contains sector() function which draws and fills an elliptical pie slice with (x, y) as center, (s_angle, e_angle) as starting and ending angle and (x_radius, y_radius) as x and y radius of sector.
Syntax :
void sector(int x, int y, int s_angle,
int e_angle, int x_radius,
int y_radius);
where,
(x, y) is center of the sector.
(s_angle, e_angle) are starting
and ending angles.
(x_radius, y_radius) are x and y
radius of sector.
Examples :
Input : x = 200, y = 200, s_angle = 0,
e_angle = 150, x_radius = 50,
y_radius = 65
Output :
Input : x = 200, y = 200, s_angle = 30,
e_angle = 120, x_radius = 90,
y_radius = 85
Output :
Below is the implementation of sector() function :
#include <graphics.h>
int main()
{
int gd = DETECT, gm;
initgraph(&gd, &gm, "" );
sector(200, 200, 0, 150, 50, 65);
getch();
closegraph();
return 0;
}
|
Output :
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
06 Dec, 2019
Like Article
Save Article