1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23 from NetworkEditor.datatypes import AnyType
24
25
28 AnyType.__init__(self)
29 self.data['name'] = 'Grid3D'
30 self.data['color'] = '#995699'
31 self.data['shape'] = 'diamond'
32 from Volume.Grid3D import Grid3D
33 self.data['class'] = Grid3D
34
38
39 - def cast(self, data):
40 return False, data
41
42
45 AnyType.__init__(self)
46 self.data['name'] = 'Grid3DD'
47 self.data['color'] = 'magenta'
48 self.data['shape'] = 'diamond'
49 from Volume.Grid3D import Grid3DD
50 self.data['class'] = Grid3DD
51
55
56 - def cast(self, data):
57 return False, data
58
59
62 AnyType.__init__(self)
63 self.data['name'] = 'Grid3DF'
64 self.data['color'] = 'green'
65 self.data['shape'] = 'diamond'
66 from Volume.Grid3D import Grid3DF
67 self.data['class'] = Grid3DF
68
72
73 - def cast(self, data):
74 return False, data
75
76
79 AnyType.__init__(self)
80 self.data['name'] = 'Grid3DI'
81 self.data['color'] = 'yellow'
82 self.data['shape'] = 'diamond'
83 from Volume.Grid3D import Grid3DI
84 self.data['class'] = Grid3DI
85
89
90 - def cast(self, data):
91 return False, data
92
93
96 AnyType.__init__(self)
97 self.data['name'] = 'Grid3DSI'
98 self.data['color'] = 'yellow'
99 self.data['shape'] = 'diamond'
100 from Volume.Grid3D import Grid3DSI
101 self.data['class'] = Grid3DSI
102
106
107 - def cast(self, data):
108 return False, data
109
110
113 AnyType.__init__(self)
114 self.data['name'] = 'Grid3DUI'
115 self.data['color'] = 'yellow'
116 self.data['shape'] = 'diamond'
117 from Volume.Grid3D import Grid3DUI
118 self.data['class'] = Grid3DUI
119
123
124 - def cast(self, data):
125 return False, data
126
127
130 AnyType.__init__(self)
131 self.data['name'] = 'Grid3DUSI'
132 self.data['color'] = 'yellow'
133 self.data['shape'] = 'diamond'
134 from Volume.Grid3D import Grid3DUSI
135 self.data['class'] = Grid3DUSI
136
140
141 - def cast(self, data):
142 return False, data
143
144
147 AnyType.__init__(self)
148 self.data['name'] = 'Grid3DUC'
149 self.data['color'] = 'cyan'
150 self.data['shape'] = 'diamond'
151 from Volume.Grid3D import Grid3DUC
152 self.data['class'] = Grid3DUC
153
157
158 - def cast(self, data):
159 return False, data
160