aboutsummaryrefslogtreecommitdiff
path: root/boltzgas/visual/box.py
blob: 30693873e9095faa8dedb3153c8518a01d78116a (plain)
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
from OpenGL.GL import *

class ColoredBox:
    def __init__(self, origin, extend, color):
        self.origin = origin
        self.extend = extend
        self.color = color

    def setup(self):
        pass

    def update(self):
        pass

    def display_decoration(self, uniform):
        glUniform3f(uniform['face_color'], *self.color)
        glBegin(GL_TRIANGLE_STRIP)
        glVertex(self.origin[0],                  self.origin[1]                 , 0.)
        glVertex(self.origin[0] + self.extend[0], self.origin[1]                 , 0.)
        glVertex(self.origin[0]                 , self.origin[1] + self.extend[1], 0.)
        glVertex(self.origin[0] + self.extend[1], self.origin[1] + self.extend[1], 0.)
        glEnd()

    def display_window(self, uniform):
        pass

class WireBox:
    def __init__(self, x0, x1, y0, y1, z0, z1):
        self.x0 = x0
        self.x1 = x1
        self.y0 = y0
        self.y1 = y1
        self.z0 = z0
        self.z1 = z1

    def setup(self):
        pass

    def update(self):
        pass

    def display_decoration(self, uniform):
        glBegin(GL_LINE_STRIP)
        glVertex(self.x0, self.y0, self.z0)
        glVertex(self.x0, self.y1, self.z0)
        glVertex(self.x0, self.y1, self.z1)
        glVertex(self.x0, self.y0, self.z1)
        glVertex(self.x0, self.y0, self.z0)
        glEnd()
        glBegin(GL_LINE_STRIP)
        glVertex(self.x1, self.y0, self.z0)
        glVertex(self.x1, self.y1, self.z0)
        glVertex(self.x1, self.y1, self.z1)
        glVertex(self.x1, self.y0, self.z1)
        glVertex(self.x1, self.y0, self.z0)
        glEnd()
        glBegin(GL_LINE_STRIP)
        glVertex(self.x0, self.y0, self.z1)
        glVertex(self.x1, self.y0, self.z1)
        glVertex(self.x1, self.y1, self.z1)
        glVertex(self.x0, self.y1, self.z1)
        glVertex(self.x0, self.y0, self.z1)
        glEnd()
        glBegin(GL_LINE_STRIP)
        glVertex(self.x0, self.y0, self.z0)
        glVertex(self.x1, self.y0, self.z0)
        glVertex(self.x1, self.y1, self.z0)
        glVertex(self.x0, self.y1, self.z0)
        glVertex(self.x0, self.y0, self.z0)
        glEnd()
        glBegin(GL_LINE_STRIP)
        glVertex(self.x0, self.y0, self.z0)
        glVertex(self.x1, self.y0, self.z0)
        glVertex(self.x1, self.y0, self.z1)
        glVertex(self.x0, self.y0, self.z1)
        glVertex(self.x0, self.y0, self.z0)
        glEnd()
        glBegin(GL_LINE_STRIP)
        glVertex(self.x0,self.y1,self.z0)
        glVertex(self.x1,self.y1,self.z0)
        glVertex(self.x1,self.y1,self.z1)
        glVertex(self.x0,self.y1,self.z1)
        glVertex(self.x0,self.y1,self.z0)
        glEnd()

    def display_window(self, uniform):
        pass