// A C++ program to illustrate the implementation of Scaling Transformation. //--------------------------- Header Files ----------------------------// # include
# include
# include
# include
//----------------------- Function Prototypes -------------------------// void show_screen( ); void apply_scaling(const int,int [],const float,const float); void multiply_matrices(const float[3],const float[3][3],float[3]); void Polygon(const int,const int []); void Line(const int,const int,const int,const int); //------------------------------ main( ) ------------------------------// int main( ) { int driver=VGA; int mode=VGAHI; initgraph(&driver,&mode,"..\\Bgi"); show_screen( ); int polygon_points[10]={ 270,290, 270,190, 370,190, 370,290, 270,290 }; setcolor(15); Polygon(5,polygon_points); setcolor(15); settextstyle(0,0,1); outtextxy(50,415,"*** Use '+' and '-' Keys to apply Scaling."); int key_code=0; char Key=NULL; do { Key=NULL; key_code=0; Key=getch( ); key_code=int(Key); if(key_code==0) { Key=getch( ); key_code=int(Key); } if(key_code==27) break; else if(key_code==43) { setfillstyle(1,0); bar(40,70,600,410); apply_scaling(5,polygon_points,1.1,1.1); setcolor(10); Polygon(5,polygon_points); } else if(key_code==45) { setfillstyle(1,0); bar(40,70,600,410); apply_scaling(5,polygon_points,0.9,0.9); setcolor(12); Polygon(5,polygon_points); } } while(1); return 0; } //------------------------ Funcion Definitions ------------------------// /*************************************************************************/ //-------------------------- apply_scaling( ) -------------------------// void apply_scaling(const int n,int coordinates[], const float Sx,const float Sy) { for(int count_1=0;count_1
=2) { Line(coordinates[0],coordinates[1], coordinates[2],coordinates[3]); for(int count=1;count<(n-1);count++) Line(coordinates[(count*2)],coordinates[((count*2)+1)], coordinates[((count+1)*2)], coordinates[(((count+1)*2)+1)]); } } //------------------------------- Line( ) -----------------------------// void Line(const int x_1,const int y_1,const int x_2,const int y_2) { int color=getcolor( ); int x1=x_1; int y1=y_1; int x2=x_2; int y2=y_2; if(x_1>x_2) { x1=x_2; y1=y_2; x2=x_1; y2=y_1; } int dx=abs(x2-x1); int dy=abs(y2-y1); int inc_dec=((y2>=y1)?1:-1); if(dx>dy) { int two_dy=(2*dy); int two_dy_dx=(2*(dy-dx)); int p=((2*dy)-dx); int x=x1; int y=y1; putpixel(x,y,color); while(x