forked from burakbayramli/books
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathPyMiller.py
More file actions
41 lines (31 loc) · 766 Bytes
/
Copy pathPyMiller.py
File metadata and controls
41 lines (31 loc) · 766 Bytes
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
# PyFunc.py
# Plotting functions
from OpenGL.GL import *
from OpenGL.GLU import *
from OpenGL.GLUT import *
from numpy import *
def init():
glClearColor(1.0, 1.0, 1.0, 1.0)
gluOrtho2D(-2.0, 2.0, -2.0, 2.0)
def plotFunc():
glClear(GL_COLOR_BUFFER_BIT)
glColor3f(0.0, 0.0, 0.0)
#glPointSize(3.0)
glColor3f(0.0,0.0,0.0)
glBegin(GL_POINTS)
for t in arange(-200.0,200.0,.005):
x = sin(.99*t) - .7*cos(3.01*t)
y = cos(1.01*t) + .1*sin(15.03*t)
glVertex2f(x, y)
glEnd()
glFlush()
def main():
glutInit([])
glutInitDisplayMode(GLUT_SINGLE|GLUT_RGB)
glutInitWindowPosition(50,50)
glutInitWindowSize(250,250)
glutCreateWindow("Function Plotter")
glutDisplayFunc(plotFunc)
init()
glutMainLoop()
main()