This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: DDA Line Drawing Algorithm | |
Description: C Program to draw a line by using DDA Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
#include<math.h> | |
void main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Circle using Midpoint Circle Algorithm | |
Description: C Program to draw a circle using Midpoint Circle Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
void main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Coloured Circle using Midpoint Circle Algorithm | |
Description: C Program to draw a Circle filled with different colors using Midpoint Circle Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
void main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Coloured Circle using Midpoint Circle Algorithm | |
Description: C Program to draw a Circle filled with different colors using Midpoint Circle Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
void main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Square using Midpoint Circle Algorithm | |
Description: C Program to draw a Square using Midpoint Circle Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
void main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Midpoint Ellipse Algorithm | |
Description: C Program to draw an Ellipse using Midpoint Ellipse Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
void main() | |
{ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Boundary Fill Algorithm | |
Description: A C Program to draw any shape and fill color in it using Boundary Fill Algorithm's either 4-connected or 8-connected approach | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<conio.h> | |
#include<graphics.h> | |
void convex(int,int); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Flood Fill Algorithm | |
Description: A C Program to draw any shape and fill color in it using Flood Fill Algorithm's either 4-connected or 8-connected approach | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<conio.h> | |
#include<graphics.h> | |
void ffill(int,int,int,int,int); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: Bezier Curve | |
Description: C Program to draw any kind of curve using Bezier Curve Algorithm | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<graphics.h> | |
#include<math.h> | |
void bezier(int x[4],int y[4]); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Title: 2D Transformation | |
Description: C Program to draw any shape perform 2D Transformations like Translation, Scaling, Rotation Reflection & Shear on that shape. | |
Author: Saideep Dicholkar | |
*/ | |
#include<stdio.h> | |
#include<conio.h> | |
#include<graphics.h> | |
#include<math.h> |
NewerOlder