-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy patha1q23_random.py
80 lines (60 loc) · 2.09 KB
/
a1q23_random.py
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
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
import random
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,s):
glPointSize(s)
glColor3fv(color)
glBegin(GL_POINTS)
glVertex2f(x,y)
glEnd()
def random_point():
return x,y,(r,g,b)
def main():
if not glfw.init():
raise Exception("glfw nt initialized")
window=glfw.create_window(640,480, "B117049 - Random Points, Colours and Sizes",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)
x=[]
y=[]
r=[]
g=[]
b=[]
size=[]
for i in range (0,10,1):
x.append(random.randint(-200,200))
y.append(random.randint(-200,200))
r.append(random.randint(0,256)/256)
g.append(random.randint(0,256)/256)
b.append(random.randint(0,256)/256)
size.append(random.randint(3,20))
print("x= ", x[i], " y= ",y[i],"colour=(", r[i],",",g[i],",",b[i],") ", "size=",size[i])
while not glfw.window_should_close(window):
glClear(GL_COLOR_BUFFER_BIT)
glClearColor(1,1,1,1.0)
for i in range(0,10,1):
setpixel(x[i], y[i], (r[i],g[i],b[i]), size[i])
glfw.swap_buffers(window)
glfw.poll_events()
glfw.terminate()
if __name__ =="__main__":
main()