2023-11-30 00:18:46 +05:30
|
|
|
/*
|
|
|
|
Problem Statement: a) Write C++ program to draw 2-D object and perform following basic transformations:
|
|
|
|
Scaling, Translation, Rotation. Apply the concept of operator overloading
|
|
|
|
Code from Computer Graphics (SPPU - Second Year - Computer Engineering - Content) repository on KSKA Git: https://git.kska.io/sppu-se-comp-codes/CG
|
|
|
|
*/
|
|
|
|
|
|
|
|
// BEGINNING OF CODE
|
2023-11-23 12:23:20 +05:30
|
|
|
#include<iostream>
|
|
|
|
#include<graphics.h>
|
|
|
|
#include<cmath>
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
int main()
|
|
|
|
{
|
|
|
|
int gd = DETECT,gm;
|
2023-11-28 23:39:20 +05:30
|
|
|
initgraph(&gd, &gm, NULL);
|
|
|
|
initwindow(1000,800);
|
|
|
|
float a[3][3];
|
|
|
|
int x1,y1,x2,y2,choice;
|
|
|
|
cout<<"Enter x1 and y1 coordinates: ";
|
|
|
|
cin>>a[0][0]>>a[1][0];
|
|
|
|
cout<<"\nEnter x2 and y2 coordinates: ";
|
|
|
|
cin>>a[0][1]>>a[1][1];
|
|
|
|
cout<<"\nEnter x3 and y3 coordinates: ";
|
|
|
|
cin>>a[0][2]>>a[1][2];
|
|
|
|
a[2][0] =a[2][1] = a[2][2] = 1;
|
|
|
|
line(a[0][0],a[1][0],a[0][1],a[1][1]);
|
|
|
|
line(a[0][1],a[1][1],a[0][2],a[1][2]);
|
|
|
|
line(a[0][2],a[1][2],a[0][0],a[1][0]);
|
|
|
|
delay(10000);
|
|
|
|
cout<<"\n1. Translation \n2. Scaling \n3. Rotation";
|
|
|
|
cout<<"\nEnter choice: ";
|
|
|
|
cin>>choice;
|
|
|
|
switch(choice)
|
2023-11-23 12:23:20 +05:30
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
case 1:
|
2023-11-23 12:23:20 +05:30
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
float b[3][3],c[3][3];
|
|
|
|
b[0][0] = b[1][1] = b[2][2] = 1;
|
|
|
|
b[0][1] = b[1][0] = b[2][0] = b[2][1] = 0;
|
|
|
|
cout<<"\nEnter tx and ty: ";
|
|
|
|
cin>>b[0][2]>>b[1][2];
|
2023-11-23 12:23:20 +05:30
|
|
|
for(int i = 0; i<3; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j<3; j++)
|
|
|
|
{
|
|
|
|
c[i][j] = 0;
|
|
|
|
for(int k = 0; k<3; k++)
|
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
c[i][j] += b[i][k]*a[k][j];
|
2023-11-23 12:23:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setcolor(BLUE);
|
|
|
|
line(c[0][0],c[1][0],c[0][1],c[1][1]);
|
|
|
|
line(c[0][1],c[1][1],c[0][2],c[1][2]);
|
|
|
|
line(c[0][2],c[1][2],c[0][0],c[1][0]);
|
2023-11-28 23:39:20 +05:30
|
|
|
delay(7000);
|
2023-11-23 12:23:20 +05:30
|
|
|
}
|
2023-11-28 23:39:20 +05:30
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
2023-11-23 12:23:20 +05:30
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
float b[3][3],c[3][3];
|
|
|
|
b[0][1] = b[0][2] = b[1][0] = b[1][2] = b[2][0] = b[2][1] = 0;
|
|
|
|
b[2][2] = 1;
|
|
|
|
cout<<"\nEnter sx and sy: ";
|
|
|
|
cin>>b[0][0]>>b[1][1];
|
2023-11-23 12:23:20 +05:30
|
|
|
for(int i = 0; i<3; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j<3; j++)
|
|
|
|
{
|
|
|
|
c[i][j] = 0;
|
|
|
|
for(int k = 0; k<3; k++)
|
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
c[i][j] += b[i][k]*a[k][j];
|
2023-11-23 12:23:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setcolor(BLUE);
|
|
|
|
line(c[0][0],c[1][0],c[0][1],c[1][1]);
|
|
|
|
line(c[0][1],c[1][1],c[0][2],c[1][2]);
|
|
|
|
line(c[0][2],c[1][2],c[0][0],c[1][0]);
|
2023-11-28 23:39:20 +05:30
|
|
|
delay(7000);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 3:
|
|
|
|
{
|
|
|
|
float b[3][3],c[3][3];
|
|
|
|
float z;
|
|
|
|
cout<<"\nEnter angle: ";
|
2023-11-23 12:23:20 +05:30
|
|
|
cin>>z;
|
2023-11-28 23:39:20 +05:30
|
|
|
float ang = (z*3.14)/180;
|
|
|
|
b[0][2] = b[1][2] = b[2][0] = b[2][1] = 0;
|
|
|
|
b[2][2] = 1;
|
|
|
|
b[0][0] = cos(ang);
|
|
|
|
b[0][1] = sin(ang);
|
|
|
|
b[1][0] = -(sin(ang));
|
|
|
|
b[1][1] = cos(ang);
|
2023-11-23 12:23:20 +05:30
|
|
|
for(int i = 0; i<3; i++)
|
|
|
|
{
|
|
|
|
for(int j = 0; j<3; j++)
|
|
|
|
{
|
|
|
|
c[i][j] = 0;
|
|
|
|
for(int k = 0; k<3; k++)
|
|
|
|
{
|
2023-11-28 23:39:20 +05:30
|
|
|
c[i][j] += b[i][k]*a[k][j];
|
2023-11-23 12:23:20 +05:30
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
setcolor(BLUE);
|
|
|
|
line(c[0][0],c[1][0],c[0][1],c[1][1]);
|
|
|
|
line(c[0][1],c[1][1],c[0][2],c[1][2]);
|
|
|
|
line(c[0][2],c[1][2],c[0][0],c[1][0]);
|
2023-11-28 23:39:20 +05:30
|
|
|
delay(7000);
|
|
|
|
}
|
2023-11-23 12:23:20 +05:30
|
|
|
}
|
2023-11-28 23:39:20 +05:30
|
|
|
closegraph();
|
2023-11-23 12:23:20 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2023-11-30 00:18:46 +05:30
|
|
|
// END OF CODE
|