-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlab2.cpp
45 lines (41 loc) · 795 Bytes
/
lab2.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#include<stdio.h>
#include<GL/glut.h>
#include<bits/stdc++.h>
using namespace std;
float triangle[3][2]={{200,100},{400,100},{300,300}};
float h=0,k=0,theta;
void drawtriangle()
{
glBegin(GL_LINE_LOOP);
glVertex2fv(triangle[0]);
glVertex2fv(triangle[1]);
glVertex2fv(triangle[2]);
glEnd();
}
void display()
{
glClear(GL_COLOR_BUFFER_BIT);
drawtriangle();
glTranslatef(h,k,0);
glRotatef(theta,0,0,1);
glTranslatef(-h,-k,0);
drawtriangle();
glFlush();
}
void init()
{
gluOrtho2D(-700,700,-700,700);
}
int main(int argc,char** argv)
{
cout << "Enter the rotation angle.\n";
cin >> theta;
glutInit(&argc,argv);
glutInitDisplayMode(GLUT_SINGLE);
glutInitWindowSize(350,350);
glutCreateWindow("house:C Tathva");
glutDisplayFunc(display);
init();
glutMainLoop();
return 0;
}