質問編集履歴
1
Pythonのコードを追加しました
test
CHANGED
File without changes
|
test
CHANGED
@@ -9,6 +9,50 @@
|
|
9
9
|
ご教示いただければ幸いです。
|
10
10
|
|
11
11
|
よろしくおねがいします。
|
12
|
+
|
13
|
+
|
14
|
+
|
15
|
+
### 試しに書いたPythonのコード
|
16
|
+
|
17
|
+
```Python
|
18
|
+
|
19
|
+
import numpy as np
|
20
|
+
|
21
|
+
|
22
|
+
|
23
|
+
class Vector3D:
|
24
|
+
|
25
|
+
x = 0
|
26
|
+
|
27
|
+
y = 0
|
28
|
+
|
29
|
+
z = 0
|
30
|
+
|
31
|
+
|
32
|
+
|
33
|
+
class PointCloud:
|
34
|
+
|
35
|
+
pc = Vector3D()
|
36
|
+
|
37
|
+
|
38
|
+
|
39
|
+
pc1 = PointCloud()
|
40
|
+
|
41
|
+
pc2 = PointCloud()
|
42
|
+
|
43
|
+
pc3 = PointCloud()
|
44
|
+
|
45
|
+
pc4 = PointCloud()
|
46
|
+
|
47
|
+
|
48
|
+
|
49
|
+
pc_arr = [pc1,pc2,pc3,pc4]
|
50
|
+
|
51
|
+
|
52
|
+
|
53
|
+
```
|
54
|
+
|
55
|
+
クラスのPointCloud内のpcは2次元配列で各要素にクラスVector3Dを持つようにしたいです。
|
12
56
|
|
13
57
|
|
14
58
|
|