Showing posts with label computer graphic. Show all posts
Showing posts with label computer graphic. Show all posts

Friday, April 23, 2021

, , , ,

ellipse function in C programming

 ellipse function in c Learn to Declarations ellipse function in computer graphic void ellipse(int x, int y, int stangle, int endangle, int xradius, int yradius)  This function is used to draw an ellipse where (x,y) are coordinates of center of that draw ellipse, stangle is the starting angle, end angle is the ending angle,  int xradius, int yradius are parameters specifies the...

Wednesday, April 14, 2021

, , , ,

line function in computer graphics

line function in c programming :-Well line function in c computer graphics is used as it name says to draw a line from a point(x1,y1) to point(x2,y2) where (x2,y2) are end points to draw a line.Here you can also check the c program to draw a line in computer graphics. (adsbygoogle = window.adsbygoogle || []).push({});  C example program #include <graphics.h>#include <conio.h>main(){ ...