-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy patha1q25_a_parabola.py
More file actions
78 lines (58 loc) · 1.87 KB
/
a1q25_a_parabola.py
File metadata and controls
78 lines (58 loc) · 1.87 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
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 drawAxes():
glColor3f(0,0,1)
glBegin(GL_LINES)
glVertex2f(-300,0)
glVertex2f(300,0)
glVertex2f(0,-9950)
glVertex2f(0,90000)
glEnd()
def setpixel(x,y,color):
glColor3fv(color)
glPointSize(2.3)
glBegin(GL_POINTS)
glVertex2f(x,y)
glEnd()
def parabola(x):
return (x*x)-2
def main():
if not glfw.init():
raise Exception("glfw nt initialized")
window=glfw.create_window(700,700, "B117049- Quadratic Function",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,45)
glfw.make_context_current(window)
glfw.set_key_callback(window, key_callback)
glfw.set_window_size_callback(window, reshape_callback)
gluOrtho2D(-300.0, 300.0,-9050.0,90000.0)
setpixel(0,0,[1,0,1])
while not glfw.window_should_close(window):
glClear(GL_COLOR_BUFFER_BIT)
glClearColor(1,1,1,1.0)
drawAxes()
prev_x = -299
prev_y= parabola(prev_x)
for i in range(-299, 299,1):
y=parabola(i)
setpixel(i,y,(1,0,0))
glfw.swap_buffers(window)
glfw.poll_events()
glfw.terminate()
if __name__ =="__main__":
main()