質問編集履歴
1
メソッドの全体を記載しました。
test
CHANGED
File without changes
|
test
CHANGED
@@ -13,3 +13,101 @@
|
|
13
13
|
という記述があるのですが、このelementsの値を2回参照すると空配列が返却されてきます。
|
14
14
|
|
15
15
|
しばらく調べさせていただきましたが答えが出ないため質問させていただきます。このような問題の原因と、解決方法は一体何でしょうか。厚かましい申し出につき大変恐縮ですが、ご教示願いたく存じます。よろしくお願いいたします。
|
16
|
+
|
17
|
+
|
18
|
+
|
19
|
+
(12/26追記)
|
20
|
+
|
21
|
+
```
|
22
|
+
|
23
|
+
メインプログラム(一部抜粋)
|
24
|
+
|
25
|
+
def read_all(self, a_file, **dictionary):
|
26
|
+
|
27
|
+
trace(self)
|
28
|
+
|
29
|
+
|
30
|
+
|
31
|
+
while True:
|
32
|
+
|
33
|
+
a_string = a_file.readline()
|
34
|
+
|
35
|
+
if not a_string: break
|
36
|
+
|
37
|
+
a_list = a_string.split()
|
38
|
+
|
39
|
+
if not a_list: continue
|
40
|
+
|
41
|
+
first_string = a_list[0]
|
42
|
+
|
43
|
+
if first_string == "number_of_vertexes":
|
44
|
+
|
45
|
+
number_of_vertexes = int(a_list[1])
|
46
|
+
|
47
|
+
if first_string == "number_of_triangles":
|
48
|
+
|
49
|
+
number_of_triangles = int(a_list[1])
|
50
|
+
|
51
|
+
if first_string == "end_header":
|
52
|
+
|
53
|
+
get_tokens = (lambda file: file.readline().split())
|
54
|
+
|
55
|
+
collection_of_vertexes = []
|
56
|
+
|
57
|
+
for _ in range(number_of_vertexes):
|
58
|
+
|
59
|
+
vertex = map(float, get_tokens(a_file))
|
60
|
+
|
61
|
+
collection_of_vertexes.append(vertex)
|
62
|
+
|
63
|
+
for _ in range(number_of_triangles):
|
64
|
+
|
65
|
+
a_string = a_file.readline()
|
66
|
+
|
67
|
+
indexes = map(int, a_string.split())
|
68
|
+
|
69
|
+
i = indexes
|
70
|
+
|
71
|
+
a_triangle = OpenGLTriangle(*([collection_of_vertexes[index - 1] for index in indexes]))
|
72
|
+
|
73
|
+
a_triangle.rgb(0.8, 0.1, 0.1)
|
74
|
+
|
75
|
+
self._model.add(a_triangle)
|
76
|
+
|
77
|
+
self.set_projection(**dictionary)
|
78
|
+
|
79
|
+
```
|
80
|
+
|
81
|
+
|
82
|
+
|
83
|
+
```
|
84
|
+
|
85
|
+
自作ライブラリ(一部抜粋)
|
86
|
+
|
87
|
+
|
88
|
+
|
89
|
+
class OpenGLTriangle(OpenGLObject):
|
90
|
+
|
91
|
+
def __init__(self, vertex1, vertex2, vertex3):
|
92
|
+
|
93
|
+
super().__init__()
|
94
|
+
|
95
|
+
# 法線ベクトル(単位ベクトル)を計算(右手系で算出)
|
96
|
+
|
97
|
+
map_function = (lambda value1, value0: value1 - value0)
|
98
|
+
|
99
|
+
ux, uy, uz = list(map(map_function, b, a))
|
100
|
+
|
101
|
+
vx, vy, vz = list(map(map_function, c, a))
|
102
|
+
|
103
|
+
normal_vector = [(uy * vz - uz * vy), (uz * vx - ux * vz), (ux * vy - uy * vx)]
|
104
|
+
|
105
|
+
map_function = (lambda value: value * value)
|
106
|
+
|
107
|
+
distance = sum(list(map(map_function, normal_vector))) ** 0.5
|
108
|
+
|
109
|
+
map_function = (lambda vector: vector / distance)
|
110
|
+
|
111
|
+
self._normal_unit_vector = list(map(map_function, normal_vector))
|
112
|
+
|
113
|
+
```
|