-
Notifications
You must be signed in to change notification settings - Fork 1
/
circle_ladder.py
227 lines (170 loc) · 4.01 KB
/
circle_ladder.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
### originally from crown_circling.py
import sys
from mysansagraphic import *
try:
from OpenGL.GLUT import *
from OpenGL.GL import *
from OpenGL.GLU import *
except:
print('Error: PyOpenGL not installed properly')
sys.exit( )
import array
import math
import signal
import random
def signal_handler(signal, frame):
print('u pressed ctrl-c')
sys.exit(0)
signal.signal(signal.SIGINT, signal_handler)
###signal.pause()
xrotspiral = 1.0
zrotspiral = 1.0
PI = 3.141592653
ngon=120
angle_step=2*PI/ngon
r1_step = 0.005
r2_step = 0.001
delta=0.6
theta1 = 2*PI/ngon
fullscreen = False
mouseDown = False
xrot = 0.2
yrot = 0.0
xdiff = 0.0
ydiff = 0.0
def init():
glClearColor(1.0,1.0,1.0,0.0)
glClearColor(0.0, 0.0, 0.0, 1.0)
glClearColor(0.0, 0.0, 0.0, 0.0)
glEnable(GL_DEPTH_TEST)
glDepthFunc(GL_LEQUAL)
glClearDepth(1.0)
return True
Vertices = ((-1,-1,-1), (1,-1,-1),
(1,1,-1), (-1,1,-1),
(-1,-1,1), (1,-1,1),
(1,1,1), (-1,1,1))
Colors = ((0.2,0.5,0.9), (1,0,0),
(1,1,0), (0,1,0),
(0,0,1), (1,0,1),
(1,1,1), (0,1,1))
def circling_on_sphere(circle_radius, sphere_radius, turns):
glBlendFunc(GL_SRC_ALPHA_SATURATE, GL_ONE)
glEnable(GL_BLEND)
glBegin(GL_LINES)
ngon=10
theta1=2*math.pi/ngon
sphere_gon=5
yrotate1=360.0/turns
theta=0.0
y_rotate_angle=0.0
for i in range(0,turns):
for i in range(0,ngon):
## phi = wrt y axis (sinusoidal, between 45 deg and 135 deg)
## theta = wrt x axis, on the zx plane (normal increment)
#phi1=math.pi*math.sin(ngon*theta)/4
#phi=math.pi/2 - phi1
cx=circle_radius*math.sin(theta)
cy=circle_radius*math.cos(2*theta)
cz=sphere_radius
(rx,ry,rz)=point_rotatey(cx,cy,cz, y_rotate_angle)
#rx=radius*math.sin(phi)*math.cos(theta)
#rz=radius*math.sin(phi)*math.sin(theta)
#ry=radius*math.cos(phi)
if (i==0):
rx0=rx
ry0=ry
rz0=rz
if (i==1):
rx1=rx
ry1=ry
rz1=rz
glVertex3f( rx, ry, rz )
glColor3fv(Colors[i%8])
glVertex3f( rx, ry, rz + 2.0 )
theta += theta1
y_rotate_angle += yrotate1
glVertex3f( rx0, ry0, rz0 )
glVertex3f( rx1, ry1, rz1 )
glEnd()
return
def display():
global xrot, yrot
global xrotspiral, zrotspiral
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT)
glLoadIdentity()
gluLookAt(
0.0, 0.0, 10.0,
0.0, 0.0, 0.0,
0.0, 1.0, 0.0)
glRotatef(xrot, 1.0, 0.0, 0.0)
glRotatef(yrot, 0.0, 1.0, 0.0)
glColor3f(0.5, 0.0, 1.0)
circling_on_sphere(1.0, 2.0, 30)
glFlush()
glutSwapBuffers()
def resize(*args):
glMatrixMode(GL_PROJECTION)
glLoadIdentity()
glViewport(0, 0, args[0], args[1])
gluPerspective(45.0, 1.0 * args[0] / args[0], 1.0, 100.0)
glMatrixMode(GL_MODELVIEW)
glLoadIdentity()
def idle():
global xrot, yrot
global mouseDown
if not (mouseDown):
xrot += 0.3
yrot += 0.4
glutPostRedisplay()
def keyboard(*args):
##print args[0]
if (args[0]==27):
## print args[0]
sys.exit(1)
def specialKeyboard(*args):
##print args[0]
if (args[0] == GLUT_KEY_F1):
fullscreen = not(fullscreen)
if (fullscreen):
glutFullScreen()
else:
glutReshapeWindow(500, 500)
glutPositionWindow(50, 50)
def mouse(*args):
global xrot, yrot
global xdiff, ydiff
global mouseDown
if (args[0] == GLUT_LEFT_BUTTON and args[1] == GLUT_DOWN):
mouseDown = True
xdiff = args[2] - yrot
ydiff = -args[3] + xrot
else:
mouseDown = False
def mouseMotion(*args):
global xrot, yrot
global xdiff, ydiff
global mouseDown
if (mouseDown):
yrot = args[0] - xdiff
xrot = args[1] + ydiff
glutPostRedisplay()
def main():
glutInit(sys.argv)
glutInitWindowPosition(50, 50)
glutInitWindowSize(500, 500)
glutInitDisplayMode(GLUT_RGB | GLUT_DOUBLE)
glutCreateWindow(sys.argv[0])
glutDisplayFunc(display)
glutKeyboardFunc(keyboard)
glutSpecialFunc(specialKeyboard)
glutMouseFunc(mouse)
glutMotionFunc(mouseMotion)
glutReshapeFunc(resize)
if not (init()):
return 1
glutIdleFunc(idle)
glutMainLoop()
return 0
if __name__ == "__main__":
main()