scaling – Programmerbay https://programmerbay.com A Tech Bay for Tech Savvy Sat, 20 Aug 2022 15:26:48 +0000 en-US hourly 1 https://wordpress.org/?v=6.5.5 https://programmerbay.com/wp-content/uploads/2019/09/cropped-without-transparent-32x32.jpg scaling – Programmerbay https://programmerbay.com 32 32 Program To Perform Scaling on a Triangle in C https://programmerbay.com/program-to-perform-scaling-on-a-triangle/ https://programmerbay.com/program-to-perform-scaling-on-a-triangle/#respond Wed, 27 Jul 2022 17:19:15 +0000 https://www.programmerbay.com/?p=1868 In this article, we’ll be implementing a program to demonstrate 2D scaling of a triangle in computer graphics using C.

Scaling can be defined as a process of changing or altering the size of an object. It can be used to increase or decrease the size of the respective object. Below is the program:

Program to Scale a Triangle in C

program:

#include<stdio.h>
#include<conio.h>
#include<graphics.h>
void main(){
int x,y,x1,y1,x2,y2;
int scl_fctr_x,scl_fctr_y;
int gd=DETECT,gm;
initgraph(&gd,&gm,"C:\\TURBOC3\\BGI");
printf("\t\t\t********** Scaling ***********\n");
printf("\n\t\t\t Please enter first coordinate of Triangle = ");
scanf("%d %d",&x,&y);
printf("\n\t\t\t Please enter second coordinate of Triangle = ");
scanf("%d %d",&x1,&y1);
printf("\n\t\t\t Please enter third coordinate of Triangle = ");
scanf("%d %d",&x2,&y2);
line(x,y,x1,y1);
line(x1,y1,x2,y2);
line(x2,y2,x,y);
printf("\n\t\t\t Now Enter Scaling factor x and y = ");
scanf("%d %d",&scl_fctr_x,&scl_fctr_y);
x = x* scl_fctr_x;
x1 = x1* scl_fctr_x;
x2 = x2* scl_fctr_x;
y = y* scl_fctr_y;
y1 = y1* scl_fctr_y;
y2= y2 * scl_fctr_y ;

line(x,y,x1,y1);
line(x1,y1,x2,y2);
line(x2,y2,x,y);
getch();
closegraph();
}

Output:

scaling

 

 

]]>
https://programmerbay.com/program-to-perform-scaling-on-a-triangle/feed/ 0