-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtraingle.py
More file actions
92 lines (64 loc) · 2.2 KB
/
traingle.py
File metadata and controls
92 lines (64 loc) · 2.2 KB
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
from __future__ import division
from __future__ import print_function
import glfw
from OpenGL.GL import *
from OpenGL.GLU import *
import numpy as np
from math import floor
def key_callback(window, key, scancode, action, mode):
if key == glfw.KEY_ESCAPE and action == glfw.PRESS:
print("closed window for pressing Escape key")
glfw.set_window_should_close(window, True)
def reshape_callback(window, width, height):
glViewport(0,0,width, height)
def setpixel(x,y,color):
glColor3fv(color)
glBegin(GL_POINTS)
glVertex2f(x,y)
glEnd()
def DDALine(x1,y1,x2,y2, colour):
if abs(x2-x1) >= abs(y2-y1):
l=abs(x2-x1)
else:
l=abs(y2-y1)
dx=(x2-x1)/l
dy=(y2-y1)/l
x=x1+0.5
y=y1+0.5
setpixel(floor(x), floor(y), [0,0,0])
for i in range(1, l+1):
x=x+dx
y=y+dy
setpixel(floor(x), floor(y), colour)
def main():
a1= int(input("enter coordinates x1:"))
b1= int(input("enter coordinates y1:"))
a2= int(input("enter coordinates x2:"))
b2= int(input("enter coordinates y2:"))
c1= int(input("enter coordinates x3:"))
c2= int(input("enter coordinates y3:"))
if not glfw.init():
raise Exception("glfw nt initialized")
window=glfw.create_window(512,512, "Triangle",None,None)
if not window:
glfw.terminate()
raise Exception("glfw window not created")
w,h = glfw.get_framebuffer_size(window)
print("width: {}, height:{}".format(w,h))
glfw.set_window_pos(window, 400,200)
glfw.make_context_current(window)
glfw.set_key_callback(window, key_callback)
glfw.set_window_size_callback(window, reshape_callback)
gluOrtho2D(-200.0, 200.0,-200.0,200.0)
while not glfw.window_should_close(window):
glClear(GL_COLOR_BUFFER_BIT)
#glClearColor(0.0,0.76,0.56,1.0)
glClearColor(1.0,1.0,1.0,1.0)
DDALine(a1, b1, a2,b2,[1,0,1])
DDALine(a1,b1, c1,c2,[0,0,1])
DDALine(c1,c2,a2,b2, [1,0,0])
glfw.swap_buffers(window)
glfw.poll_events()
glfw.terminate()
if __name__ =="__main__":
main()