Logo 
Search:

C++ Programming Articles

Submit Article
Home » Articles » C++ Programming » Computer GraphicsRSS Feeds

Program of scaling about reference point

Posted By: Easy Tutor     Category: C++ Programming     Views: 2714

Write a program of scaling about reference point.

Code for Program of scaling about reference point in C++ Programming

# include <iostream.h>
# include <conio.h>
# include <graphics.h>
# include <math.h>

char IncFlag;
int PolygonPoints[4][2] =
    {{10,10},{10,100},{100,100},{100,10}};

float Sx=0.5;
float Sy=2.0;

int RefX=55;
int RefY=55;
void PolyLine()
{
    int iCnt;
    cleardevice();
    line(0,240,640,240);
    line(320,0,320,480);
    for (iCnt=0; iCnt<4; iCnt++)
    {
        line(320+PolygonPoints[iCnt][0],240-PolygonPoints[iCnt][1],
          320+PolygonPoints[(iCnt+1)%4][0],240-PolygonPoints[(iCnt+1)%4][1]);
    }
}

void Scale()
{
    int iCnt;
    int Tx,Ty;
    cout<<endl;
    for (iCnt=0; iCnt<4; iCnt++)
    {
        PolygonPoints[iCnt][0] *= Sx;
        PolygonPoints[iCnt][0] += (1-Sx)*RefX;
        PolygonPoints[iCnt][1] *= Sy;
        PolygonPoints[iCnt][1] += (1-Sy)*RefY;
    }
}

void main()
{
    int gDriver = DETECT, gMode;
    int iCnt;
    initgraph(&gDriver, &gMode, "C:\\TC\\BGI");
    PolyLine();
    getch();
    Scale();
    PolyLine();
    getch();
}
  
Share: 


Didn't find what you were looking for? Find more on Program of scaling about reference point Or get search suggestion and latest updates.

Easy Tutor
Easy Tutor author of Program of scaling about reference point is from United States. Easy Tutor says

Hello Friends,

I am Free Lance Tutor, who helped student in completing their homework.

I have 4 Years of hands on experience on helping student in completing their homework. I also guide them in doing their final year projects.

I have share many programs on this website for everyone to use freely, if you need further assistance, than please contact me on easytutor.2ya [at the rate] gmail [dot] com

I have special discount scheme for providing tutor services. I am providing tutor service to students from various contries, currently most of my students are from United States, India, Australia, Pakistan, Germany, UK and Canada.

I am also here to expand my technical network to receive more opportunity in my career, make friends to help them in resolving their technical problem, learn and share my knowledge, If you like to be my friend, Please send me friend request.

Thanks,
Happy Programming :)

 
View All Articles

Related Articles and Code:


 
Please enter your Comment

  • Comment should be atleast 30 Characters.
  • Please put code inside [Code] your code [/Code].

 
No Comment Found, Be the First to post comment!