nv-sgl 0.6.0__cp313-cp313-manylinux_2_27_x86_64.manylinux_2_28_x86_64.whl
Sign up to get free protection for your applications and to get access to all the features.
- include/tevclient.h +393 -0
- nv_sgl-0.6.0.dist-info/LICENSE +29 -0
- nv_sgl-0.6.0.dist-info/METADATA +21 -0
- nv_sgl-0.6.0.dist-info/RECORD +133 -0
- nv_sgl-0.6.0.dist-info/WHEEL +6 -0
- nv_sgl-0.6.0.dist-info/top_level.txt +1 -0
- sgl/__init__.py +15 -0
- sgl/__init__.pyi +6738 -0
- sgl/include/sgl/app/app.h +113 -0
- sgl/include/sgl/core/bitmap.h +302 -0
- sgl/include/sgl/core/crypto.h +89 -0
- sgl/include/sgl/core/data_type.h +46 -0
- sgl/include/sgl/core/dds_file.h +103 -0
- sgl/include/sgl/core/enum.h +201 -0
- sgl/include/sgl/core/error.h +161 -0
- sgl/include/sgl/core/file_stream.h +77 -0
- sgl/include/sgl/core/file_system_watcher.h +141 -0
- sgl/include/sgl/core/format.h +36 -0
- sgl/include/sgl/core/fwd.h +90 -0
- sgl/include/sgl/core/hash.h +45 -0
- sgl/include/sgl/core/input.h +522 -0
- sgl/include/sgl/core/logger.h +214 -0
- sgl/include/sgl/core/macros.h +184 -0
- sgl/include/sgl/core/maths.h +45 -0
- sgl/include/sgl/core/memory_mapped_file.h +112 -0
- sgl/include/sgl/core/memory_mapped_file_stream.h +32 -0
- sgl/include/sgl/core/memory_stream.h +74 -0
- sgl/include/sgl/core/object.h +683 -0
- sgl/include/sgl/core/platform.h +239 -0
- sgl/include/sgl/core/plugin.h +331 -0
- sgl/include/sgl/core/resolver.h +39 -0
- sgl/include/sgl/core/short_vector.h +141 -0
- sgl/include/sgl/core/static_vector.h +111 -0
- sgl/include/sgl/core/stream.h +54 -0
- sgl/include/sgl/core/string.h +276 -0
- sgl/include/sgl/core/struct.h +360 -0
- sgl/include/sgl/core/thread.h +28 -0
- sgl/include/sgl/core/timer.h +52 -0
- sgl/include/sgl/core/traits.h +15 -0
- sgl/include/sgl/core/type_utils.h +19 -0
- sgl/include/sgl/core/window.h +177 -0
- sgl/include/sgl/device/agility_sdk.h +24 -0
- sgl/include/sgl/device/blit.h +88 -0
- sgl/include/sgl/device/buffer_cursor.h +162 -0
- sgl/include/sgl/device/command.h +539 -0
- sgl/include/sgl/device/cuda_api.h +766 -0
- sgl/include/sgl/device/cuda_interop.h +39 -0
- sgl/include/sgl/device/cuda_utils.h +107 -0
- sgl/include/sgl/device/cursor_utils.h +129 -0
- sgl/include/sgl/device/device.h +668 -0
- sgl/include/sgl/device/device_resource.h +37 -0
- sgl/include/sgl/device/fence.h +91 -0
- sgl/include/sgl/device/formats.h +330 -0
- sgl/include/sgl/device/framebuffer.h +85 -0
- sgl/include/sgl/device/fwd.h +164 -0
- sgl/include/sgl/device/helpers.h +20 -0
- sgl/include/sgl/device/hot_reload.h +75 -0
- sgl/include/sgl/device/input_layout.h +74 -0
- sgl/include/sgl/device/kernel.h +69 -0
- sgl/include/sgl/device/memory_heap.h +155 -0
- sgl/include/sgl/device/native_formats.h +342 -0
- sgl/include/sgl/device/native_handle.h +73 -0
- sgl/include/sgl/device/native_handle_traits.h +65 -0
- sgl/include/sgl/device/pipeline.h +138 -0
- sgl/include/sgl/device/print.h +45 -0
- sgl/include/sgl/device/python/cursor_utils.h +853 -0
- sgl/include/sgl/device/query.h +52 -0
- sgl/include/sgl/device/raytracing.h +84 -0
- sgl/include/sgl/device/reflection.h +1254 -0
- sgl/include/sgl/device/resource.h +705 -0
- sgl/include/sgl/device/sampler.h +57 -0
- sgl/include/sgl/device/shader.h +516 -0
- sgl/include/sgl/device/shader_cursor.h +85 -0
- sgl/include/sgl/device/shader_object.h +94 -0
- sgl/include/sgl/device/shader_offset.h +67 -0
- sgl/include/sgl/device/shared_handle.h +12 -0
- sgl/include/sgl/device/slang_utils.h +54 -0
- sgl/include/sgl/device/swapchain.h +74 -0
- sgl/include/sgl/device/types.h +782 -0
- sgl/include/sgl/math/colorspace.h +56 -0
- sgl/include/sgl/math/constants.h +7 -0
- sgl/include/sgl/math/float16.h +146 -0
- sgl/include/sgl/math/matrix.h +6 -0
- sgl/include/sgl/math/matrix_math.h +746 -0
- sgl/include/sgl/math/matrix_types.h +207 -0
- sgl/include/sgl/math/python/primitivetype.h +33 -0
- sgl/include/sgl/math/quaternion.h +6 -0
- sgl/include/sgl/math/quaternion_math.h +484 -0
- sgl/include/sgl/math/quaternion_types.h +83 -0
- sgl/include/sgl/math/ray.h +47 -0
- sgl/include/sgl/math/scalar_math.h +249 -0
- sgl/include/sgl/math/scalar_types.h +107 -0
- sgl/include/sgl/math/vector.h +6 -0
- sgl/include/sgl/math/vector_math.h +1796 -0
- sgl/include/sgl/math/vector_types.h +336 -0
- sgl/include/sgl/python/nanobind.h +489 -0
- sgl/include/sgl/python/py_doc.h +11600 -0
- sgl/include/sgl/python/sgl_ext_pch.h +8 -0
- sgl/include/sgl/sgl.h +21 -0
- sgl/include/sgl/sgl_pch.h +6 -0
- sgl/include/sgl/stl/bit.h +377 -0
- sgl/include/sgl/tests/testing.h +54 -0
- sgl/include/sgl/ui/fwd.h +34 -0
- sgl/include/sgl/ui/imgui_config.h +43 -0
- sgl/include/sgl/ui/ui.h +71 -0
- sgl/include/sgl/ui/widgets.h +918 -0
- sgl/include/sgl/utils/python/slangpy.h +366 -0
- sgl/include/sgl/utils/renderdoc.h +50 -0
- sgl/include/sgl/utils/slangpy.h +153 -0
- sgl/include/sgl/utils/tev.h +93 -0
- sgl/include/sgl/utils/texture_loader.h +106 -0
- sgl/libgfx.so +0 -0
- sgl/libsgl.so +0 -0
- sgl/libslang-glslang.so +0 -0
- sgl/libslang.so +0 -0
- sgl/libtevclient.a +0 -0
- sgl/math/__init__.pyi +5083 -0
- sgl/platform/__init__.pyi +102 -0
- sgl/renderdoc/__init__.pyi +51 -0
- sgl/sgl_ext.cpython-313-x86_64-linux-gnu.so +0 -0
- sgl/shaders/sgl/device/blit.slang +93 -0
- sgl/shaders/sgl/device/nvapi.slang +5 -0
- sgl/shaders/sgl/device/nvapi.slangh +7 -0
- sgl/shaders/sgl/device/print.slang +445 -0
- sgl/shaders/sgl/math/constants.slang +4 -0
- sgl/shaders/sgl/math/ray.slang +29 -0
- sgl/shaders/sgl/ui/imgui.slang +49 -0
- sgl/slangpy/__init__.pyi +268 -0
- sgl/tev/__init__.pyi +108 -0
- sgl/thread/__init__.pyi +4 -0
- sgl/ui/__init__.pyi +1118 -0
- share/cmake/tevclient/tevclient-config-release.cmake +19 -0
- share/cmake/tevclient/tevclient-config.cmake +103 -0
sgl/math/__init__.pyi
ADDED
@@ -0,0 +1,5083 @@
|
|
1
|
+
from collections.abc import Sequence
|
2
|
+
import enum
|
3
|
+
from typing import Annotated, overload
|
4
|
+
|
5
|
+
from numpy.typing import ArrayLike
|
6
|
+
|
7
|
+
|
8
|
+
class Handedness(enum.Enum):
|
9
|
+
right_handed = 0
|
10
|
+
|
11
|
+
left_handed = 1
|
12
|
+
|
13
|
+
@overload
|
14
|
+
def abs(x: float1) -> float1: ...
|
15
|
+
|
16
|
+
@overload
|
17
|
+
def abs(x: float2) -> float2: ...
|
18
|
+
|
19
|
+
@overload
|
20
|
+
def abs(x: float3) -> float3: ...
|
21
|
+
|
22
|
+
@overload
|
23
|
+
def abs(x: float4) -> float4: ...
|
24
|
+
|
25
|
+
@overload
|
26
|
+
def abs(x: int1) -> int1: ...
|
27
|
+
|
28
|
+
@overload
|
29
|
+
def abs(x: int2) -> int2: ...
|
30
|
+
|
31
|
+
@overload
|
32
|
+
def abs(x: int3) -> int3: ...
|
33
|
+
|
34
|
+
@overload
|
35
|
+
def abs(x: int4) -> int4: ...
|
36
|
+
|
37
|
+
@overload
|
38
|
+
def acos(x: float) -> float: ...
|
39
|
+
|
40
|
+
@overload
|
41
|
+
def acos(x: float) -> float: ...
|
42
|
+
|
43
|
+
@overload
|
44
|
+
def acos(x: float1) -> float1: ...
|
45
|
+
|
46
|
+
@overload
|
47
|
+
def acos(x: float2) -> float2: ...
|
48
|
+
|
49
|
+
@overload
|
50
|
+
def acos(x: float3) -> float3: ...
|
51
|
+
|
52
|
+
@overload
|
53
|
+
def acos(x: float4) -> float4: ...
|
54
|
+
|
55
|
+
@overload
|
56
|
+
def all(x: bool1) -> bool: ...
|
57
|
+
|
58
|
+
@overload
|
59
|
+
def all(x: bool2) -> bool: ...
|
60
|
+
|
61
|
+
@overload
|
62
|
+
def all(x: bool3) -> bool: ...
|
63
|
+
|
64
|
+
@overload
|
65
|
+
def all(x: bool4) -> bool: ...
|
66
|
+
|
67
|
+
@overload
|
68
|
+
def any(x: bool1) -> bool: ...
|
69
|
+
|
70
|
+
@overload
|
71
|
+
def any(x: bool2) -> bool: ...
|
72
|
+
|
73
|
+
@overload
|
74
|
+
def any(x: bool3) -> bool: ...
|
75
|
+
|
76
|
+
@overload
|
77
|
+
def any(x: bool4) -> bool: ...
|
78
|
+
|
79
|
+
@overload
|
80
|
+
def asfloat(x: int) -> float: ...
|
81
|
+
|
82
|
+
@overload
|
83
|
+
def asfloat(x: int) -> float: ...
|
84
|
+
|
85
|
+
def asfloat16(x: int) -> float16_t: ...
|
86
|
+
|
87
|
+
@overload
|
88
|
+
def asin(x: float) -> float: ...
|
89
|
+
|
90
|
+
@overload
|
91
|
+
def asin(x: float) -> float: ...
|
92
|
+
|
93
|
+
@overload
|
94
|
+
def asin(x: float1) -> float1: ...
|
95
|
+
|
96
|
+
@overload
|
97
|
+
def asin(x: float2) -> float2: ...
|
98
|
+
|
99
|
+
@overload
|
100
|
+
def asin(x: float3) -> float3: ...
|
101
|
+
|
102
|
+
@overload
|
103
|
+
def asin(x: float4) -> float4: ...
|
104
|
+
|
105
|
+
def asint(x: float) -> int: ...
|
106
|
+
|
107
|
+
@overload
|
108
|
+
def asuint(x: float) -> int: ...
|
109
|
+
|
110
|
+
@overload
|
111
|
+
def asuint(x: float2) -> uint2: ...
|
112
|
+
|
113
|
+
@overload
|
114
|
+
def asuint(x: float3) -> uint3: ...
|
115
|
+
|
116
|
+
@overload
|
117
|
+
def asuint(x: float4) -> uint4: ...
|
118
|
+
|
119
|
+
def asuint16(x: float16_t) -> int: ...
|
120
|
+
|
121
|
+
@overload
|
122
|
+
def atan(x: float) -> float: ...
|
123
|
+
|
124
|
+
@overload
|
125
|
+
def atan(x: float) -> float: ...
|
126
|
+
|
127
|
+
@overload
|
128
|
+
def atan(x: float1) -> float1: ...
|
129
|
+
|
130
|
+
@overload
|
131
|
+
def atan(x: float2) -> float2: ...
|
132
|
+
|
133
|
+
@overload
|
134
|
+
def atan(x: float3) -> float3: ...
|
135
|
+
|
136
|
+
@overload
|
137
|
+
def atan(x: float4) -> float4: ...
|
138
|
+
|
139
|
+
@overload
|
140
|
+
def atan2(y: float, x: float) -> float: ...
|
141
|
+
|
142
|
+
@overload
|
143
|
+
def atan2(y: float, x: float) -> float: ...
|
144
|
+
|
145
|
+
@overload
|
146
|
+
def atan2(y: float1, x: float1) -> float1: ...
|
147
|
+
|
148
|
+
@overload
|
149
|
+
def atan2(y: float2, x: float2) -> float2: ...
|
150
|
+
|
151
|
+
@overload
|
152
|
+
def atan2(y: float3, x: float3) -> float3: ...
|
153
|
+
|
154
|
+
@overload
|
155
|
+
def atan2(y: float4, x: float4) -> float4: ...
|
156
|
+
|
157
|
+
class bool1:
|
158
|
+
@overload
|
159
|
+
def __init__(self) -> None: ...
|
160
|
+
|
161
|
+
@overload
|
162
|
+
def __init__(self, scalar: bool) -> None: ...
|
163
|
+
|
164
|
+
@overload
|
165
|
+
def __init__(self, a: Sequence[bool]) -> None: ...
|
166
|
+
|
167
|
+
@property
|
168
|
+
def x(self) -> bool: ...
|
169
|
+
|
170
|
+
@x.setter
|
171
|
+
def x(self, arg: bool, /) -> None: ...
|
172
|
+
|
173
|
+
def __len__(self) -> int: ...
|
174
|
+
|
175
|
+
def __getitem__(self, arg: int, /) -> bool: ...
|
176
|
+
|
177
|
+
def __setitem__(self, arg0: int, arg1: bool, /) -> None: ...
|
178
|
+
|
179
|
+
@property
|
180
|
+
def shape(self) -> tuple: ...
|
181
|
+
|
182
|
+
@property
|
183
|
+
def element_type(self) -> object: ...
|
184
|
+
|
185
|
+
def __repr__(self) -> str: ...
|
186
|
+
|
187
|
+
def __str__(self) -> str: ...
|
188
|
+
|
189
|
+
def __bool__(self) -> bool: ...
|
190
|
+
|
191
|
+
@overload
|
192
|
+
def __eq__(self, arg: bool1, /) -> bool1: ...
|
193
|
+
|
194
|
+
@overload
|
195
|
+
def __eq__(self, arg: bool, /) -> bool1: ...
|
196
|
+
|
197
|
+
@overload
|
198
|
+
def __eq__(self, arg: bool, /) -> bool1: ...
|
199
|
+
|
200
|
+
@overload
|
201
|
+
def __ne__(self, arg: bool1, /) -> bool1: ...
|
202
|
+
|
203
|
+
@overload
|
204
|
+
def __ne__(self, arg: bool, /) -> bool1: ...
|
205
|
+
|
206
|
+
@overload
|
207
|
+
def __ne__(self, arg: bool, /) -> bool1: ...
|
208
|
+
|
209
|
+
class bool2:
|
210
|
+
@overload
|
211
|
+
def __init__(self) -> None: ...
|
212
|
+
|
213
|
+
@overload
|
214
|
+
def __init__(self, scalar: bool) -> None: ...
|
215
|
+
|
216
|
+
@overload
|
217
|
+
def __init__(self, x: bool, y: bool) -> None: ...
|
218
|
+
|
219
|
+
@overload
|
220
|
+
def __init__(self, a: Sequence[bool]) -> None: ...
|
221
|
+
|
222
|
+
@property
|
223
|
+
def x(self) -> bool: ...
|
224
|
+
|
225
|
+
@x.setter
|
226
|
+
def x(self, arg: bool, /) -> None: ...
|
227
|
+
|
228
|
+
@property
|
229
|
+
def y(self) -> bool: ...
|
230
|
+
|
231
|
+
@y.setter
|
232
|
+
def y(self, arg: bool, /) -> None: ...
|
233
|
+
|
234
|
+
def __len__(self) -> int: ...
|
235
|
+
|
236
|
+
def __getitem__(self, arg: int, /) -> bool: ...
|
237
|
+
|
238
|
+
def __setitem__(self, arg0: int, arg1: bool, /) -> None: ...
|
239
|
+
|
240
|
+
@property
|
241
|
+
def shape(self) -> tuple: ...
|
242
|
+
|
243
|
+
@property
|
244
|
+
def element_type(self) -> object: ...
|
245
|
+
|
246
|
+
def __repr__(self) -> str: ...
|
247
|
+
|
248
|
+
def __str__(self) -> str: ...
|
249
|
+
|
250
|
+
def __bool__(self) -> bool: ...
|
251
|
+
|
252
|
+
@overload
|
253
|
+
def __eq__(self, arg: bool2, /) -> bool2: ...
|
254
|
+
|
255
|
+
@overload
|
256
|
+
def __eq__(self, arg: bool, /) -> bool2: ...
|
257
|
+
|
258
|
+
@overload
|
259
|
+
def __eq__(self, arg: bool, /) -> bool2: ...
|
260
|
+
|
261
|
+
@overload
|
262
|
+
def __ne__(self, arg: bool2, /) -> bool2: ...
|
263
|
+
|
264
|
+
@overload
|
265
|
+
def __ne__(self, arg: bool, /) -> bool2: ...
|
266
|
+
|
267
|
+
@overload
|
268
|
+
def __ne__(self, arg: bool, /) -> bool2: ...
|
269
|
+
|
270
|
+
class bool3:
|
271
|
+
@overload
|
272
|
+
def __init__(self) -> None: ...
|
273
|
+
|
274
|
+
@overload
|
275
|
+
def __init__(self, scalar: bool) -> None: ...
|
276
|
+
|
277
|
+
@overload
|
278
|
+
def __init__(self, x: bool, y: bool, z: bool) -> None: ...
|
279
|
+
|
280
|
+
@overload
|
281
|
+
def __init__(self, xy: bool2, z: bool) -> None: ...
|
282
|
+
|
283
|
+
@overload
|
284
|
+
def __init__(self, x: bool, yz: bool2) -> None: ...
|
285
|
+
|
286
|
+
@overload
|
287
|
+
def __init__(self, a: Sequence[bool]) -> None: ...
|
288
|
+
|
289
|
+
@property
|
290
|
+
def x(self) -> bool: ...
|
291
|
+
|
292
|
+
@x.setter
|
293
|
+
def x(self, arg: bool, /) -> None: ...
|
294
|
+
|
295
|
+
@property
|
296
|
+
def y(self) -> bool: ...
|
297
|
+
|
298
|
+
@y.setter
|
299
|
+
def y(self, arg: bool, /) -> None: ...
|
300
|
+
|
301
|
+
@property
|
302
|
+
def z(self) -> bool: ...
|
303
|
+
|
304
|
+
@z.setter
|
305
|
+
def z(self, arg: bool, /) -> None: ...
|
306
|
+
|
307
|
+
def __len__(self) -> int: ...
|
308
|
+
|
309
|
+
def __getitem__(self, arg: int, /) -> bool: ...
|
310
|
+
|
311
|
+
def __setitem__(self, arg0: int, arg1: bool, /) -> None: ...
|
312
|
+
|
313
|
+
@property
|
314
|
+
def shape(self) -> tuple: ...
|
315
|
+
|
316
|
+
@property
|
317
|
+
def element_type(self) -> object: ...
|
318
|
+
|
319
|
+
def __repr__(self) -> str: ...
|
320
|
+
|
321
|
+
def __str__(self) -> str: ...
|
322
|
+
|
323
|
+
def __bool__(self) -> bool: ...
|
324
|
+
|
325
|
+
@overload
|
326
|
+
def __eq__(self, arg: bool3, /) -> bool3: ...
|
327
|
+
|
328
|
+
@overload
|
329
|
+
def __eq__(self, arg: bool, /) -> bool3: ...
|
330
|
+
|
331
|
+
@overload
|
332
|
+
def __eq__(self, arg: bool, /) -> bool3: ...
|
333
|
+
|
334
|
+
@overload
|
335
|
+
def __ne__(self, arg: bool3, /) -> bool3: ...
|
336
|
+
|
337
|
+
@overload
|
338
|
+
def __ne__(self, arg: bool, /) -> bool3: ...
|
339
|
+
|
340
|
+
@overload
|
341
|
+
def __ne__(self, arg: bool, /) -> bool3: ...
|
342
|
+
|
343
|
+
class bool4:
|
344
|
+
@overload
|
345
|
+
def __init__(self) -> None: ...
|
346
|
+
|
347
|
+
@overload
|
348
|
+
def __init__(self, scalar: bool) -> None: ...
|
349
|
+
|
350
|
+
@overload
|
351
|
+
def __init__(self, x: bool, y: bool, z: bool, w: bool) -> None: ...
|
352
|
+
|
353
|
+
@overload
|
354
|
+
def __init__(self, xy: bool2, zw: bool2) -> None: ...
|
355
|
+
|
356
|
+
@overload
|
357
|
+
def __init__(self, xyz: bool3, w: bool) -> None: ...
|
358
|
+
|
359
|
+
@overload
|
360
|
+
def __init__(self, x: bool, yzw: bool3) -> None: ...
|
361
|
+
|
362
|
+
@overload
|
363
|
+
def __init__(self, a: Sequence[bool]) -> None: ...
|
364
|
+
|
365
|
+
@property
|
366
|
+
def x(self) -> bool: ...
|
367
|
+
|
368
|
+
@x.setter
|
369
|
+
def x(self, arg: bool, /) -> None: ...
|
370
|
+
|
371
|
+
@property
|
372
|
+
def y(self) -> bool: ...
|
373
|
+
|
374
|
+
@y.setter
|
375
|
+
def y(self, arg: bool, /) -> None: ...
|
376
|
+
|
377
|
+
@property
|
378
|
+
def z(self) -> bool: ...
|
379
|
+
|
380
|
+
@z.setter
|
381
|
+
def z(self, arg: bool, /) -> None: ...
|
382
|
+
|
383
|
+
@property
|
384
|
+
def w(self) -> bool: ...
|
385
|
+
|
386
|
+
@w.setter
|
387
|
+
def w(self, arg: bool, /) -> None: ...
|
388
|
+
|
389
|
+
def __len__(self) -> int: ...
|
390
|
+
|
391
|
+
def __getitem__(self, arg: int, /) -> bool: ...
|
392
|
+
|
393
|
+
def __setitem__(self, arg0: int, arg1: bool, /) -> None: ...
|
394
|
+
|
395
|
+
@property
|
396
|
+
def shape(self) -> tuple: ...
|
397
|
+
|
398
|
+
@property
|
399
|
+
def element_type(self) -> object: ...
|
400
|
+
|
401
|
+
def __repr__(self) -> str: ...
|
402
|
+
|
403
|
+
def __str__(self) -> str: ...
|
404
|
+
|
405
|
+
def __bool__(self) -> bool: ...
|
406
|
+
|
407
|
+
@overload
|
408
|
+
def __eq__(self, arg: bool4, /) -> bool4: ...
|
409
|
+
|
410
|
+
@overload
|
411
|
+
def __eq__(self, arg: bool, /) -> bool4: ...
|
412
|
+
|
413
|
+
@overload
|
414
|
+
def __eq__(self, arg: bool, /) -> bool4: ...
|
415
|
+
|
416
|
+
@overload
|
417
|
+
def __ne__(self, arg: bool4, /) -> bool4: ...
|
418
|
+
|
419
|
+
@overload
|
420
|
+
def __ne__(self, arg: bool, /) -> bool4: ...
|
421
|
+
|
422
|
+
@overload
|
423
|
+
def __ne__(self, arg: bool, /) -> bool4: ...
|
424
|
+
|
425
|
+
@overload
|
426
|
+
def ceil(x: float) -> float: ...
|
427
|
+
|
428
|
+
@overload
|
429
|
+
def ceil(x: float) -> float: ...
|
430
|
+
|
431
|
+
@overload
|
432
|
+
def ceil(x: float1) -> float1: ...
|
433
|
+
|
434
|
+
@overload
|
435
|
+
def ceil(x: float2) -> float2: ...
|
436
|
+
|
437
|
+
@overload
|
438
|
+
def ceil(x: float3) -> float3: ...
|
439
|
+
|
440
|
+
@overload
|
441
|
+
def ceil(x: float4) -> float4: ...
|
442
|
+
|
443
|
+
@overload
|
444
|
+
def clamp(x: float1, min: float1, max: float1) -> float1: ...
|
445
|
+
|
446
|
+
@overload
|
447
|
+
def clamp(x: float2, min: float2, max: float2) -> float2: ...
|
448
|
+
|
449
|
+
@overload
|
450
|
+
def clamp(x: float3, min: float3, max: float3) -> float3: ...
|
451
|
+
|
452
|
+
@overload
|
453
|
+
def clamp(x: float4, min: float4, max: float4) -> float4: ...
|
454
|
+
|
455
|
+
@overload
|
456
|
+
def clamp(x: uint1, min: uint1, max: uint1) -> uint1: ...
|
457
|
+
|
458
|
+
@overload
|
459
|
+
def clamp(x: uint2, min: uint2, max: uint2) -> uint2: ...
|
460
|
+
|
461
|
+
@overload
|
462
|
+
def clamp(x: uint3, min: uint3, max: uint3) -> uint3: ...
|
463
|
+
|
464
|
+
@overload
|
465
|
+
def clamp(x: uint4, min: uint4, max: uint4) -> uint4: ...
|
466
|
+
|
467
|
+
@overload
|
468
|
+
def clamp(x: int1, min: int1, max: int1) -> int1: ...
|
469
|
+
|
470
|
+
@overload
|
471
|
+
def clamp(x: int2, min: int2, max: int2) -> int2: ...
|
472
|
+
|
473
|
+
@overload
|
474
|
+
def clamp(x: int3, min: int3, max: int3) -> int3: ...
|
475
|
+
|
476
|
+
@overload
|
477
|
+
def clamp(x: int4, min: int4, max: int4) -> int4: ...
|
478
|
+
|
479
|
+
@overload
|
480
|
+
def clamp(x: bool1, min: bool1, max: bool1) -> bool1: ...
|
481
|
+
|
482
|
+
@overload
|
483
|
+
def clamp(x: bool2, min: bool2, max: bool2) -> bool2: ...
|
484
|
+
|
485
|
+
@overload
|
486
|
+
def clamp(x: bool3, min: bool3, max: bool3) -> bool3: ...
|
487
|
+
|
488
|
+
@overload
|
489
|
+
def clamp(x: bool4, min: bool4, max: bool4) -> bool4: ...
|
490
|
+
|
491
|
+
def conjugate(x: quatf) -> quatf: ...
|
492
|
+
|
493
|
+
@overload
|
494
|
+
def cos(x: float) -> float: ...
|
495
|
+
|
496
|
+
@overload
|
497
|
+
def cos(x: float) -> float: ...
|
498
|
+
|
499
|
+
@overload
|
500
|
+
def cos(x: float1) -> float1: ...
|
501
|
+
|
502
|
+
@overload
|
503
|
+
def cos(x: float2) -> float2: ...
|
504
|
+
|
505
|
+
@overload
|
506
|
+
def cos(x: float3) -> float3: ...
|
507
|
+
|
508
|
+
@overload
|
509
|
+
def cos(x: float4) -> float4: ...
|
510
|
+
|
511
|
+
@overload
|
512
|
+
def cosh(x: float) -> float: ...
|
513
|
+
|
514
|
+
@overload
|
515
|
+
def cosh(x: float) -> float: ...
|
516
|
+
|
517
|
+
@overload
|
518
|
+
def cosh(x: float1) -> float1: ...
|
519
|
+
|
520
|
+
@overload
|
521
|
+
def cosh(x: float2) -> float2: ...
|
522
|
+
|
523
|
+
@overload
|
524
|
+
def cosh(x: float3) -> float3: ...
|
525
|
+
|
526
|
+
@overload
|
527
|
+
def cosh(x: float4) -> float4: ...
|
528
|
+
|
529
|
+
@overload
|
530
|
+
def cross(x: float3, y: float3) -> float3: ...
|
531
|
+
|
532
|
+
@overload
|
533
|
+
def cross(x: uint3, y: uint3) -> uint3: ...
|
534
|
+
|
535
|
+
@overload
|
536
|
+
def cross(x: int3, y: int3) -> int3: ...
|
537
|
+
|
538
|
+
@overload
|
539
|
+
def cross(x: quatf, y: quatf) -> quatf: ...
|
540
|
+
|
541
|
+
@overload
|
542
|
+
def degrees(x: float) -> float: ...
|
543
|
+
|
544
|
+
@overload
|
545
|
+
def degrees(x: float) -> float: ...
|
546
|
+
|
547
|
+
@overload
|
548
|
+
def degrees(x: float1) -> float1: ...
|
549
|
+
|
550
|
+
@overload
|
551
|
+
def degrees(x: float2) -> float2: ...
|
552
|
+
|
553
|
+
@overload
|
554
|
+
def degrees(x: float3) -> float3: ...
|
555
|
+
|
556
|
+
@overload
|
557
|
+
def degrees(x: float4) -> float4: ...
|
558
|
+
|
559
|
+
@overload
|
560
|
+
def determinant(x: float2x2) -> float: ...
|
561
|
+
|
562
|
+
@overload
|
563
|
+
def determinant(x: float3x3) -> float: ...
|
564
|
+
|
565
|
+
@overload
|
566
|
+
def determinant(x: float4x4) -> float: ...
|
567
|
+
|
568
|
+
@overload
|
569
|
+
def dot(x: float1, y: float1) -> float: ...
|
570
|
+
|
571
|
+
@overload
|
572
|
+
def dot(x: float2, y: float2) -> float: ...
|
573
|
+
|
574
|
+
@overload
|
575
|
+
def dot(x: float3, y: float3) -> float: ...
|
576
|
+
|
577
|
+
@overload
|
578
|
+
def dot(x: float4, y: float4) -> float: ...
|
579
|
+
|
580
|
+
@overload
|
581
|
+
def dot(x: uint1, y: uint1) -> int: ...
|
582
|
+
|
583
|
+
@overload
|
584
|
+
def dot(x: uint2, y: uint2) -> int: ...
|
585
|
+
|
586
|
+
@overload
|
587
|
+
def dot(x: uint3, y: uint3) -> int: ...
|
588
|
+
|
589
|
+
@overload
|
590
|
+
def dot(x: uint4, y: uint4) -> int: ...
|
591
|
+
|
592
|
+
@overload
|
593
|
+
def dot(x: int1, y: int1) -> int: ...
|
594
|
+
|
595
|
+
@overload
|
596
|
+
def dot(x: int2, y: int2) -> int: ...
|
597
|
+
|
598
|
+
@overload
|
599
|
+
def dot(x: int3, y: int3) -> int: ...
|
600
|
+
|
601
|
+
@overload
|
602
|
+
def dot(x: int4, y: int4) -> int: ...
|
603
|
+
|
604
|
+
@overload
|
605
|
+
def dot(x: quatf, y: quatf) -> float: ...
|
606
|
+
|
607
|
+
def euler_angles(x: quatf) -> float3: ...
|
608
|
+
|
609
|
+
@overload
|
610
|
+
def exp(x: float) -> float: ...
|
611
|
+
|
612
|
+
@overload
|
613
|
+
def exp(x: float) -> float: ...
|
614
|
+
|
615
|
+
@overload
|
616
|
+
def exp(x: float16_t) -> float16_t: ...
|
617
|
+
|
618
|
+
@overload
|
619
|
+
def exp(x: float1) -> float1: ...
|
620
|
+
|
621
|
+
@overload
|
622
|
+
def exp(x: float2) -> float2: ...
|
623
|
+
|
624
|
+
@overload
|
625
|
+
def exp(x: float3) -> float3: ...
|
626
|
+
|
627
|
+
@overload
|
628
|
+
def exp(x: float4) -> float4: ...
|
629
|
+
|
630
|
+
@overload
|
631
|
+
def exp2(x: float) -> float: ...
|
632
|
+
|
633
|
+
@overload
|
634
|
+
def exp2(x: float) -> float: ...
|
635
|
+
|
636
|
+
@overload
|
637
|
+
def exp2(x: float16_t) -> float16_t: ...
|
638
|
+
|
639
|
+
@overload
|
640
|
+
def exp2(x: float1) -> float1: ...
|
641
|
+
|
642
|
+
@overload
|
643
|
+
def exp2(x: float2) -> float2: ...
|
644
|
+
|
645
|
+
@overload
|
646
|
+
def exp2(x: float3) -> float3: ...
|
647
|
+
|
648
|
+
@overload
|
649
|
+
def exp2(x: float4) -> float4: ...
|
650
|
+
|
651
|
+
@overload
|
652
|
+
def f16tof32(x: int) -> float: ...
|
653
|
+
|
654
|
+
@overload
|
655
|
+
def f16tof32(x: uint2) -> float2: ...
|
656
|
+
|
657
|
+
@overload
|
658
|
+
def f16tof32(x: uint3) -> float3: ...
|
659
|
+
|
660
|
+
@overload
|
661
|
+
def f16tof32(x: uint4) -> float4: ...
|
662
|
+
|
663
|
+
@overload
|
664
|
+
def f32tof16(x: float) -> int: ...
|
665
|
+
|
666
|
+
@overload
|
667
|
+
def f32tof16(x: float2) -> uint2: ...
|
668
|
+
|
669
|
+
@overload
|
670
|
+
def f32tof16(x: float3) -> uint3: ...
|
671
|
+
|
672
|
+
@overload
|
673
|
+
def f32tof16(x: float4) -> uint4: ...
|
674
|
+
|
675
|
+
class float1:
|
676
|
+
@overload
|
677
|
+
def __init__(self) -> None: ...
|
678
|
+
|
679
|
+
@overload
|
680
|
+
def __init__(self, scalar: float) -> None: ...
|
681
|
+
|
682
|
+
@overload
|
683
|
+
def __init__(self, a: Sequence[float]) -> None: ...
|
684
|
+
|
685
|
+
@property
|
686
|
+
def x(self) -> float: ...
|
687
|
+
|
688
|
+
@x.setter
|
689
|
+
def x(self, arg: float, /) -> None: ...
|
690
|
+
|
691
|
+
def __len__(self) -> int: ...
|
692
|
+
|
693
|
+
def __getitem__(self, arg: int, /) -> float: ...
|
694
|
+
|
695
|
+
def __setitem__(self, arg0: int, arg1: float, /) -> None: ...
|
696
|
+
|
697
|
+
@property
|
698
|
+
def shape(self) -> tuple: ...
|
699
|
+
|
700
|
+
@property
|
701
|
+
def element_type(self) -> object: ...
|
702
|
+
|
703
|
+
def __repr__(self) -> str: ...
|
704
|
+
|
705
|
+
def __str__(self) -> str: ...
|
706
|
+
|
707
|
+
def __pos__(self) -> float1: ...
|
708
|
+
|
709
|
+
def __neg__(self) -> float1: ...
|
710
|
+
|
711
|
+
@overload
|
712
|
+
def __add__(self, arg: float1, /) -> float1: ...
|
713
|
+
|
714
|
+
@overload
|
715
|
+
def __add__(self, arg: float, /) -> float1: ...
|
716
|
+
|
717
|
+
def __radd__(self, arg: float, /) -> float1: ...
|
718
|
+
|
719
|
+
@overload
|
720
|
+
def __sub__(self, arg: float1, /) -> float1: ...
|
721
|
+
|
722
|
+
@overload
|
723
|
+
def __sub__(self, arg: float, /) -> float1: ...
|
724
|
+
|
725
|
+
def __rsub__(self, arg: float, /) -> float1: ...
|
726
|
+
|
727
|
+
@overload
|
728
|
+
def __mul__(self, arg: float1, /) -> float1: ...
|
729
|
+
|
730
|
+
@overload
|
731
|
+
def __mul__(self, arg: float, /) -> float1: ...
|
732
|
+
|
733
|
+
def __rmul__(self, arg: float, /) -> float1: ...
|
734
|
+
|
735
|
+
@overload
|
736
|
+
def __truediv__(self, arg: float1, /) -> float1: ...
|
737
|
+
|
738
|
+
@overload
|
739
|
+
def __truediv__(self, arg: float, /) -> float1: ...
|
740
|
+
|
741
|
+
def __rtruediv__(self, arg: float, /) -> float1: ...
|
742
|
+
|
743
|
+
@overload
|
744
|
+
def __iadd__(self, arg: float1, /) -> float1: ...
|
745
|
+
|
746
|
+
@overload
|
747
|
+
def __iadd__(self, arg: float, /) -> float1: ...
|
748
|
+
|
749
|
+
@overload
|
750
|
+
def __isub__(self, arg: float1, /) -> float1: ...
|
751
|
+
|
752
|
+
@overload
|
753
|
+
def __isub__(self, arg: float, /) -> float1: ...
|
754
|
+
|
755
|
+
@overload
|
756
|
+
def __imul__(self, arg: float1, /) -> float1: ...
|
757
|
+
|
758
|
+
@overload
|
759
|
+
def __imul__(self, arg: float, /) -> float1: ...
|
760
|
+
|
761
|
+
@overload
|
762
|
+
def __itruediv__(self, arg: float1, /) -> float1: ...
|
763
|
+
|
764
|
+
@overload
|
765
|
+
def __itruediv__(self, arg: float, /) -> float1: ...
|
766
|
+
|
767
|
+
@overload
|
768
|
+
def __eq__(self, arg: float1, /) -> bool1: ...
|
769
|
+
|
770
|
+
@overload
|
771
|
+
def __eq__(self, arg: float, /) -> bool1: ...
|
772
|
+
|
773
|
+
@overload
|
774
|
+
def __eq__(self, arg: float, /) -> bool1: ...
|
775
|
+
|
776
|
+
@overload
|
777
|
+
def __ne__(self, arg: float1, /) -> bool1: ...
|
778
|
+
|
779
|
+
@overload
|
780
|
+
def __ne__(self, arg: float, /) -> bool1: ...
|
781
|
+
|
782
|
+
@overload
|
783
|
+
def __ne__(self, arg: float, /) -> bool1: ...
|
784
|
+
|
785
|
+
@overload
|
786
|
+
def __lt__(self, arg: float1, /) -> bool1: ...
|
787
|
+
|
788
|
+
@overload
|
789
|
+
def __lt__(self, arg: float, /) -> bool1: ...
|
790
|
+
|
791
|
+
@overload
|
792
|
+
def __lt__(self, arg: float, /) -> bool1: ...
|
793
|
+
|
794
|
+
@overload
|
795
|
+
def __gt__(self, arg: float, /) -> bool1: ...
|
796
|
+
|
797
|
+
@overload
|
798
|
+
def __gt__(self, arg: float1, /) -> bool1: ...
|
799
|
+
|
800
|
+
@overload
|
801
|
+
def __gt__(self, arg: float, /) -> bool1: ...
|
802
|
+
|
803
|
+
@overload
|
804
|
+
def __le__(self, arg: float1, /) -> bool1: ...
|
805
|
+
|
806
|
+
@overload
|
807
|
+
def __le__(self, arg: float, /) -> bool1: ...
|
808
|
+
|
809
|
+
@overload
|
810
|
+
def __le__(self, arg: float, /) -> bool1: ...
|
811
|
+
|
812
|
+
@overload
|
813
|
+
def __ge__(self, arg: float, /) -> bool1: ...
|
814
|
+
|
815
|
+
@overload
|
816
|
+
def __ge__(self, arg: float1, /) -> bool1: ...
|
817
|
+
|
818
|
+
@overload
|
819
|
+
def __ge__(self, arg: float, /) -> bool1: ...
|
820
|
+
|
821
|
+
class float16_t:
|
822
|
+
@overload
|
823
|
+
def __init__(self, value: float) -> None: ...
|
824
|
+
|
825
|
+
@overload
|
826
|
+
def __init__(self, value: float) -> None: ...
|
827
|
+
|
828
|
+
def __float__(self) -> float: ...
|
829
|
+
|
830
|
+
class float16_t1:
|
831
|
+
@overload
|
832
|
+
def __init__(self) -> None: ...
|
833
|
+
|
834
|
+
@overload
|
835
|
+
def __init__(self, scalar: float16_t) -> None: ...
|
836
|
+
|
837
|
+
@overload
|
838
|
+
def __init__(self, a: Sequence[float16_t]) -> None: ...
|
839
|
+
|
840
|
+
@property
|
841
|
+
def x(self) -> float16_t: ...
|
842
|
+
|
843
|
+
@x.setter
|
844
|
+
def x(self, arg: float16_t, /) -> None: ...
|
845
|
+
|
846
|
+
def __len__(self) -> int: ...
|
847
|
+
|
848
|
+
def __getitem__(self, arg: int, /) -> float16_t: ...
|
849
|
+
|
850
|
+
def __setitem__(self, arg0: int, arg1: float16_t, /) -> None: ...
|
851
|
+
|
852
|
+
@property
|
853
|
+
def shape(self) -> tuple: ...
|
854
|
+
|
855
|
+
@property
|
856
|
+
def element_type(self) -> object: ...
|
857
|
+
|
858
|
+
def __repr__(self) -> str: ...
|
859
|
+
|
860
|
+
def __str__(self) -> str: ...
|
861
|
+
|
862
|
+
def __pos__(self) -> float16_t1: ...
|
863
|
+
|
864
|
+
def __neg__(self) -> float16_t1: ...
|
865
|
+
|
866
|
+
@overload
|
867
|
+
def __add__(self, arg: float16_t1, /) -> float16_t1: ...
|
868
|
+
|
869
|
+
@overload
|
870
|
+
def __add__(self, arg: float16_t, /) -> float16_t1: ...
|
871
|
+
|
872
|
+
def __radd__(self, arg: float16_t, /) -> float16_t1: ...
|
873
|
+
|
874
|
+
@overload
|
875
|
+
def __sub__(self, arg: float16_t1, /) -> float16_t1: ...
|
876
|
+
|
877
|
+
@overload
|
878
|
+
def __sub__(self, arg: float16_t, /) -> float16_t1: ...
|
879
|
+
|
880
|
+
def __rsub__(self, arg: float16_t, /) -> float16_t1: ...
|
881
|
+
|
882
|
+
@overload
|
883
|
+
def __mul__(self, arg: float16_t1, /) -> float16_t1: ...
|
884
|
+
|
885
|
+
@overload
|
886
|
+
def __mul__(self, arg: float16_t, /) -> float16_t1: ...
|
887
|
+
|
888
|
+
def __rmul__(self, arg: float16_t, /) -> float16_t1: ...
|
889
|
+
|
890
|
+
@overload
|
891
|
+
def __truediv__(self, arg: float16_t1, /) -> float16_t1: ...
|
892
|
+
|
893
|
+
@overload
|
894
|
+
def __truediv__(self, arg: float16_t, /) -> float16_t1: ...
|
895
|
+
|
896
|
+
def __rtruediv__(self, arg: float16_t, /) -> float16_t1: ...
|
897
|
+
|
898
|
+
@overload
|
899
|
+
def __iadd__(self, arg: float16_t1, /) -> float16_t1: ...
|
900
|
+
|
901
|
+
@overload
|
902
|
+
def __iadd__(self, arg: float16_t, /) -> float16_t1: ...
|
903
|
+
|
904
|
+
@overload
|
905
|
+
def __isub__(self, arg: float16_t1, /) -> float16_t1: ...
|
906
|
+
|
907
|
+
@overload
|
908
|
+
def __isub__(self, arg: float16_t, /) -> float16_t1: ...
|
909
|
+
|
910
|
+
@overload
|
911
|
+
def __imul__(self, arg: float16_t1, /) -> float16_t1: ...
|
912
|
+
|
913
|
+
@overload
|
914
|
+
def __imul__(self, arg: float16_t, /) -> float16_t1: ...
|
915
|
+
|
916
|
+
@overload
|
917
|
+
def __itruediv__(self, arg: float16_t1, /) -> float16_t1: ...
|
918
|
+
|
919
|
+
@overload
|
920
|
+
def __itruediv__(self, arg: float16_t, /) -> float16_t1: ...
|
921
|
+
|
922
|
+
@overload
|
923
|
+
def __eq__(self, arg: float16_t1, /) -> bool1: ...
|
924
|
+
|
925
|
+
@overload
|
926
|
+
def __eq__(self, arg: float16_t, /) -> bool1: ...
|
927
|
+
|
928
|
+
@overload
|
929
|
+
def __eq__(self, arg: float16_t, /) -> bool1: ...
|
930
|
+
|
931
|
+
@overload
|
932
|
+
def __ne__(self, arg: float16_t1, /) -> bool1: ...
|
933
|
+
|
934
|
+
@overload
|
935
|
+
def __ne__(self, arg: float16_t, /) -> bool1: ...
|
936
|
+
|
937
|
+
@overload
|
938
|
+
def __ne__(self, arg: float16_t, /) -> bool1: ...
|
939
|
+
|
940
|
+
@overload
|
941
|
+
def __lt__(self, arg: float16_t1, /) -> bool1: ...
|
942
|
+
|
943
|
+
@overload
|
944
|
+
def __lt__(self, arg: float16_t, /) -> bool1: ...
|
945
|
+
|
946
|
+
@overload
|
947
|
+
def __lt__(self, arg: float16_t, /) -> bool1: ...
|
948
|
+
|
949
|
+
@overload
|
950
|
+
def __gt__(self, arg: float16_t, /) -> bool1: ...
|
951
|
+
|
952
|
+
@overload
|
953
|
+
def __gt__(self, arg: float16_t1, /) -> bool1: ...
|
954
|
+
|
955
|
+
@overload
|
956
|
+
def __gt__(self, arg: float16_t, /) -> bool1: ...
|
957
|
+
|
958
|
+
@overload
|
959
|
+
def __le__(self, arg: float16_t1, /) -> bool1: ...
|
960
|
+
|
961
|
+
@overload
|
962
|
+
def __le__(self, arg: float16_t, /) -> bool1: ...
|
963
|
+
|
964
|
+
@overload
|
965
|
+
def __le__(self, arg: float16_t, /) -> bool1: ...
|
966
|
+
|
967
|
+
@overload
|
968
|
+
def __ge__(self, arg: float16_t, /) -> bool1: ...
|
969
|
+
|
970
|
+
@overload
|
971
|
+
def __ge__(self, arg: float16_t1, /) -> bool1: ...
|
972
|
+
|
973
|
+
@overload
|
974
|
+
def __ge__(self, arg: float16_t, /) -> bool1: ...
|
975
|
+
|
976
|
+
class float16_t2:
|
977
|
+
@overload
|
978
|
+
def __init__(self) -> None: ...
|
979
|
+
|
980
|
+
@overload
|
981
|
+
def __init__(self, scalar: float16_t) -> None: ...
|
982
|
+
|
983
|
+
@overload
|
984
|
+
def __init__(self, x: float16_t, y: float16_t) -> None: ...
|
985
|
+
|
986
|
+
@overload
|
987
|
+
def __init__(self, a: Sequence[float16_t]) -> None: ...
|
988
|
+
|
989
|
+
@property
|
990
|
+
def x(self) -> float16_t: ...
|
991
|
+
|
992
|
+
@x.setter
|
993
|
+
def x(self, arg: float16_t, /) -> None: ...
|
994
|
+
|
995
|
+
@property
|
996
|
+
def y(self) -> float16_t: ...
|
997
|
+
|
998
|
+
@y.setter
|
999
|
+
def y(self, arg: float16_t, /) -> None: ...
|
1000
|
+
|
1001
|
+
def __len__(self) -> int: ...
|
1002
|
+
|
1003
|
+
def __getitem__(self, arg: int, /) -> float16_t: ...
|
1004
|
+
|
1005
|
+
def __setitem__(self, arg0: int, arg1: float16_t, /) -> None: ...
|
1006
|
+
|
1007
|
+
@property
|
1008
|
+
def shape(self) -> tuple: ...
|
1009
|
+
|
1010
|
+
@property
|
1011
|
+
def element_type(self) -> object: ...
|
1012
|
+
|
1013
|
+
def __repr__(self) -> str: ...
|
1014
|
+
|
1015
|
+
def __str__(self) -> str: ...
|
1016
|
+
|
1017
|
+
def __pos__(self) -> float16_t2: ...
|
1018
|
+
|
1019
|
+
def __neg__(self) -> float16_t2: ...
|
1020
|
+
|
1021
|
+
@overload
|
1022
|
+
def __add__(self, arg: float16_t2, /) -> float16_t2: ...
|
1023
|
+
|
1024
|
+
@overload
|
1025
|
+
def __add__(self, arg: float16_t, /) -> float16_t2: ...
|
1026
|
+
|
1027
|
+
def __radd__(self, arg: float16_t, /) -> float16_t2: ...
|
1028
|
+
|
1029
|
+
@overload
|
1030
|
+
def __sub__(self, arg: float16_t2, /) -> float16_t2: ...
|
1031
|
+
|
1032
|
+
@overload
|
1033
|
+
def __sub__(self, arg: float16_t, /) -> float16_t2: ...
|
1034
|
+
|
1035
|
+
def __rsub__(self, arg: float16_t, /) -> float16_t2: ...
|
1036
|
+
|
1037
|
+
@overload
|
1038
|
+
def __mul__(self, arg: float16_t2, /) -> float16_t2: ...
|
1039
|
+
|
1040
|
+
@overload
|
1041
|
+
def __mul__(self, arg: float16_t, /) -> float16_t2: ...
|
1042
|
+
|
1043
|
+
def __rmul__(self, arg: float16_t, /) -> float16_t2: ...
|
1044
|
+
|
1045
|
+
@overload
|
1046
|
+
def __truediv__(self, arg: float16_t2, /) -> float16_t2: ...
|
1047
|
+
|
1048
|
+
@overload
|
1049
|
+
def __truediv__(self, arg: float16_t, /) -> float16_t2: ...
|
1050
|
+
|
1051
|
+
def __rtruediv__(self, arg: float16_t, /) -> float16_t2: ...
|
1052
|
+
|
1053
|
+
@overload
|
1054
|
+
def __iadd__(self, arg: float16_t2, /) -> float16_t2: ...
|
1055
|
+
|
1056
|
+
@overload
|
1057
|
+
def __iadd__(self, arg: float16_t, /) -> float16_t2: ...
|
1058
|
+
|
1059
|
+
@overload
|
1060
|
+
def __isub__(self, arg: float16_t2, /) -> float16_t2: ...
|
1061
|
+
|
1062
|
+
@overload
|
1063
|
+
def __isub__(self, arg: float16_t, /) -> float16_t2: ...
|
1064
|
+
|
1065
|
+
@overload
|
1066
|
+
def __imul__(self, arg: float16_t2, /) -> float16_t2: ...
|
1067
|
+
|
1068
|
+
@overload
|
1069
|
+
def __imul__(self, arg: float16_t, /) -> float16_t2: ...
|
1070
|
+
|
1071
|
+
@overload
|
1072
|
+
def __itruediv__(self, arg: float16_t2, /) -> float16_t2: ...
|
1073
|
+
|
1074
|
+
@overload
|
1075
|
+
def __itruediv__(self, arg: float16_t, /) -> float16_t2: ...
|
1076
|
+
|
1077
|
+
@overload
|
1078
|
+
def __eq__(self, arg: float16_t2, /) -> bool2: ...
|
1079
|
+
|
1080
|
+
@overload
|
1081
|
+
def __eq__(self, arg: float16_t, /) -> bool2: ...
|
1082
|
+
|
1083
|
+
@overload
|
1084
|
+
def __eq__(self, arg: float16_t, /) -> bool2: ...
|
1085
|
+
|
1086
|
+
@overload
|
1087
|
+
def __ne__(self, arg: float16_t2, /) -> bool2: ...
|
1088
|
+
|
1089
|
+
@overload
|
1090
|
+
def __ne__(self, arg: float16_t, /) -> bool2: ...
|
1091
|
+
|
1092
|
+
@overload
|
1093
|
+
def __ne__(self, arg: float16_t, /) -> bool2: ...
|
1094
|
+
|
1095
|
+
@overload
|
1096
|
+
def __lt__(self, arg: float16_t2, /) -> bool2: ...
|
1097
|
+
|
1098
|
+
@overload
|
1099
|
+
def __lt__(self, arg: float16_t, /) -> bool2: ...
|
1100
|
+
|
1101
|
+
@overload
|
1102
|
+
def __lt__(self, arg: float16_t, /) -> bool2: ...
|
1103
|
+
|
1104
|
+
@overload
|
1105
|
+
def __gt__(self, arg: float16_t, /) -> bool2: ...
|
1106
|
+
|
1107
|
+
@overload
|
1108
|
+
def __gt__(self, arg: float16_t2, /) -> bool2: ...
|
1109
|
+
|
1110
|
+
@overload
|
1111
|
+
def __gt__(self, arg: float16_t, /) -> bool2: ...
|
1112
|
+
|
1113
|
+
@overload
|
1114
|
+
def __le__(self, arg: float16_t2, /) -> bool2: ...
|
1115
|
+
|
1116
|
+
@overload
|
1117
|
+
def __le__(self, arg: float16_t, /) -> bool2: ...
|
1118
|
+
|
1119
|
+
@overload
|
1120
|
+
def __le__(self, arg: float16_t, /) -> bool2: ...
|
1121
|
+
|
1122
|
+
@overload
|
1123
|
+
def __ge__(self, arg: float16_t, /) -> bool2: ...
|
1124
|
+
|
1125
|
+
@overload
|
1126
|
+
def __ge__(self, arg: float16_t2, /) -> bool2: ...
|
1127
|
+
|
1128
|
+
@overload
|
1129
|
+
def __ge__(self, arg: float16_t, /) -> bool2: ...
|
1130
|
+
|
1131
|
+
class float16_t3:
|
1132
|
+
@overload
|
1133
|
+
def __init__(self) -> None: ...
|
1134
|
+
|
1135
|
+
@overload
|
1136
|
+
def __init__(self, scalar: float16_t) -> None: ...
|
1137
|
+
|
1138
|
+
@overload
|
1139
|
+
def __init__(self, x: float16_t, y: float16_t, z: float16_t) -> None: ...
|
1140
|
+
|
1141
|
+
@overload
|
1142
|
+
def __init__(self, xy: float16_t2, z: float16_t) -> None: ...
|
1143
|
+
|
1144
|
+
@overload
|
1145
|
+
def __init__(self, x: float16_t, yz: float16_t2) -> None: ...
|
1146
|
+
|
1147
|
+
@overload
|
1148
|
+
def __init__(self, a: Sequence[float16_t]) -> None: ...
|
1149
|
+
|
1150
|
+
@property
|
1151
|
+
def x(self) -> float16_t: ...
|
1152
|
+
|
1153
|
+
@x.setter
|
1154
|
+
def x(self, arg: float16_t, /) -> None: ...
|
1155
|
+
|
1156
|
+
@property
|
1157
|
+
def y(self) -> float16_t: ...
|
1158
|
+
|
1159
|
+
@y.setter
|
1160
|
+
def y(self, arg: float16_t, /) -> None: ...
|
1161
|
+
|
1162
|
+
@property
|
1163
|
+
def z(self) -> float16_t: ...
|
1164
|
+
|
1165
|
+
@z.setter
|
1166
|
+
def z(self, arg: float16_t, /) -> None: ...
|
1167
|
+
|
1168
|
+
def __len__(self) -> int: ...
|
1169
|
+
|
1170
|
+
def __getitem__(self, arg: int, /) -> float16_t: ...
|
1171
|
+
|
1172
|
+
def __setitem__(self, arg0: int, arg1: float16_t, /) -> None: ...
|
1173
|
+
|
1174
|
+
@property
|
1175
|
+
def shape(self) -> tuple: ...
|
1176
|
+
|
1177
|
+
@property
|
1178
|
+
def element_type(self) -> object: ...
|
1179
|
+
|
1180
|
+
def __repr__(self) -> str: ...
|
1181
|
+
|
1182
|
+
def __str__(self) -> str: ...
|
1183
|
+
|
1184
|
+
def __pos__(self) -> float16_t3: ...
|
1185
|
+
|
1186
|
+
def __neg__(self) -> float16_t3: ...
|
1187
|
+
|
1188
|
+
@overload
|
1189
|
+
def __add__(self, arg: float16_t3, /) -> float16_t3: ...
|
1190
|
+
|
1191
|
+
@overload
|
1192
|
+
def __add__(self, arg: float16_t, /) -> float16_t3: ...
|
1193
|
+
|
1194
|
+
def __radd__(self, arg: float16_t, /) -> float16_t3: ...
|
1195
|
+
|
1196
|
+
@overload
|
1197
|
+
def __sub__(self, arg: float16_t3, /) -> float16_t3: ...
|
1198
|
+
|
1199
|
+
@overload
|
1200
|
+
def __sub__(self, arg: float16_t, /) -> float16_t3: ...
|
1201
|
+
|
1202
|
+
def __rsub__(self, arg: float16_t, /) -> float16_t3: ...
|
1203
|
+
|
1204
|
+
@overload
|
1205
|
+
def __mul__(self, arg: float16_t3, /) -> float16_t3: ...
|
1206
|
+
|
1207
|
+
@overload
|
1208
|
+
def __mul__(self, arg: float16_t, /) -> float16_t3: ...
|
1209
|
+
|
1210
|
+
def __rmul__(self, arg: float16_t, /) -> float16_t3: ...
|
1211
|
+
|
1212
|
+
@overload
|
1213
|
+
def __truediv__(self, arg: float16_t3, /) -> float16_t3: ...
|
1214
|
+
|
1215
|
+
@overload
|
1216
|
+
def __truediv__(self, arg: float16_t, /) -> float16_t3: ...
|
1217
|
+
|
1218
|
+
def __rtruediv__(self, arg: float16_t, /) -> float16_t3: ...
|
1219
|
+
|
1220
|
+
@overload
|
1221
|
+
def __iadd__(self, arg: float16_t3, /) -> float16_t3: ...
|
1222
|
+
|
1223
|
+
@overload
|
1224
|
+
def __iadd__(self, arg: float16_t, /) -> float16_t3: ...
|
1225
|
+
|
1226
|
+
@overload
|
1227
|
+
def __isub__(self, arg: float16_t3, /) -> float16_t3: ...
|
1228
|
+
|
1229
|
+
@overload
|
1230
|
+
def __isub__(self, arg: float16_t, /) -> float16_t3: ...
|
1231
|
+
|
1232
|
+
@overload
|
1233
|
+
def __imul__(self, arg: float16_t3, /) -> float16_t3: ...
|
1234
|
+
|
1235
|
+
@overload
|
1236
|
+
def __imul__(self, arg: float16_t, /) -> float16_t3: ...
|
1237
|
+
|
1238
|
+
@overload
|
1239
|
+
def __itruediv__(self, arg: float16_t3, /) -> float16_t3: ...
|
1240
|
+
|
1241
|
+
@overload
|
1242
|
+
def __itruediv__(self, arg: float16_t, /) -> float16_t3: ...
|
1243
|
+
|
1244
|
+
@overload
|
1245
|
+
def __eq__(self, arg: float16_t3, /) -> bool3: ...
|
1246
|
+
|
1247
|
+
@overload
|
1248
|
+
def __eq__(self, arg: float16_t, /) -> bool3: ...
|
1249
|
+
|
1250
|
+
@overload
|
1251
|
+
def __eq__(self, arg: float16_t, /) -> bool3: ...
|
1252
|
+
|
1253
|
+
@overload
|
1254
|
+
def __ne__(self, arg: float16_t3, /) -> bool3: ...
|
1255
|
+
|
1256
|
+
@overload
|
1257
|
+
def __ne__(self, arg: float16_t, /) -> bool3: ...
|
1258
|
+
|
1259
|
+
@overload
|
1260
|
+
def __ne__(self, arg: float16_t, /) -> bool3: ...
|
1261
|
+
|
1262
|
+
@overload
|
1263
|
+
def __lt__(self, arg: float16_t3, /) -> bool3: ...
|
1264
|
+
|
1265
|
+
@overload
|
1266
|
+
def __lt__(self, arg: float16_t, /) -> bool3: ...
|
1267
|
+
|
1268
|
+
@overload
|
1269
|
+
def __lt__(self, arg: float16_t, /) -> bool3: ...
|
1270
|
+
|
1271
|
+
@overload
|
1272
|
+
def __gt__(self, arg: float16_t, /) -> bool3: ...
|
1273
|
+
|
1274
|
+
@overload
|
1275
|
+
def __gt__(self, arg: float16_t3, /) -> bool3: ...
|
1276
|
+
|
1277
|
+
@overload
|
1278
|
+
def __gt__(self, arg: float16_t, /) -> bool3: ...
|
1279
|
+
|
1280
|
+
@overload
|
1281
|
+
def __le__(self, arg: float16_t3, /) -> bool3: ...
|
1282
|
+
|
1283
|
+
@overload
|
1284
|
+
def __le__(self, arg: float16_t, /) -> bool3: ...
|
1285
|
+
|
1286
|
+
@overload
|
1287
|
+
def __le__(self, arg: float16_t, /) -> bool3: ...
|
1288
|
+
|
1289
|
+
@overload
|
1290
|
+
def __ge__(self, arg: float16_t, /) -> bool3: ...
|
1291
|
+
|
1292
|
+
@overload
|
1293
|
+
def __ge__(self, arg: float16_t3, /) -> bool3: ...
|
1294
|
+
|
1295
|
+
@overload
|
1296
|
+
def __ge__(self, arg: float16_t, /) -> bool3: ...
|
1297
|
+
|
1298
|
+
class float16_t4:
|
1299
|
+
@overload
|
1300
|
+
def __init__(self) -> None: ...
|
1301
|
+
|
1302
|
+
@overload
|
1303
|
+
def __init__(self, scalar: float16_t) -> None: ...
|
1304
|
+
|
1305
|
+
@overload
|
1306
|
+
def __init__(self, x: float16_t, y: float16_t, z: float16_t, w: float16_t) -> None: ...
|
1307
|
+
|
1308
|
+
@overload
|
1309
|
+
def __init__(self, xy: float16_t2, zw: float16_t2) -> None: ...
|
1310
|
+
|
1311
|
+
@overload
|
1312
|
+
def __init__(self, xyz: float16_t3, w: float16_t) -> None: ...
|
1313
|
+
|
1314
|
+
@overload
|
1315
|
+
def __init__(self, x: float16_t, yzw: float16_t3) -> None: ...
|
1316
|
+
|
1317
|
+
@overload
|
1318
|
+
def __init__(self, a: Sequence[float16_t]) -> None: ...
|
1319
|
+
|
1320
|
+
@property
|
1321
|
+
def x(self) -> float16_t: ...
|
1322
|
+
|
1323
|
+
@x.setter
|
1324
|
+
def x(self, arg: float16_t, /) -> None: ...
|
1325
|
+
|
1326
|
+
@property
|
1327
|
+
def y(self) -> float16_t: ...
|
1328
|
+
|
1329
|
+
@y.setter
|
1330
|
+
def y(self, arg: float16_t, /) -> None: ...
|
1331
|
+
|
1332
|
+
@property
|
1333
|
+
def z(self) -> float16_t: ...
|
1334
|
+
|
1335
|
+
@z.setter
|
1336
|
+
def z(self, arg: float16_t, /) -> None: ...
|
1337
|
+
|
1338
|
+
@property
|
1339
|
+
def w(self) -> float16_t: ...
|
1340
|
+
|
1341
|
+
@w.setter
|
1342
|
+
def w(self, arg: float16_t, /) -> None: ...
|
1343
|
+
|
1344
|
+
def __len__(self) -> int: ...
|
1345
|
+
|
1346
|
+
def __getitem__(self, arg: int, /) -> float16_t: ...
|
1347
|
+
|
1348
|
+
def __setitem__(self, arg0: int, arg1: float16_t, /) -> None: ...
|
1349
|
+
|
1350
|
+
@property
|
1351
|
+
def shape(self) -> tuple: ...
|
1352
|
+
|
1353
|
+
@property
|
1354
|
+
def element_type(self) -> object: ...
|
1355
|
+
|
1356
|
+
def __repr__(self) -> str: ...
|
1357
|
+
|
1358
|
+
def __str__(self) -> str: ...
|
1359
|
+
|
1360
|
+
def __pos__(self) -> float16_t4: ...
|
1361
|
+
|
1362
|
+
def __neg__(self) -> float16_t4: ...
|
1363
|
+
|
1364
|
+
@overload
|
1365
|
+
def __add__(self, arg: float16_t4, /) -> float16_t4: ...
|
1366
|
+
|
1367
|
+
@overload
|
1368
|
+
def __add__(self, arg: float16_t, /) -> float16_t4: ...
|
1369
|
+
|
1370
|
+
def __radd__(self, arg: float16_t, /) -> float16_t4: ...
|
1371
|
+
|
1372
|
+
@overload
|
1373
|
+
def __sub__(self, arg: float16_t4, /) -> float16_t4: ...
|
1374
|
+
|
1375
|
+
@overload
|
1376
|
+
def __sub__(self, arg: float16_t, /) -> float16_t4: ...
|
1377
|
+
|
1378
|
+
def __rsub__(self, arg: float16_t, /) -> float16_t4: ...
|
1379
|
+
|
1380
|
+
@overload
|
1381
|
+
def __mul__(self, arg: float16_t4, /) -> float16_t4: ...
|
1382
|
+
|
1383
|
+
@overload
|
1384
|
+
def __mul__(self, arg: float16_t, /) -> float16_t4: ...
|
1385
|
+
|
1386
|
+
def __rmul__(self, arg: float16_t, /) -> float16_t4: ...
|
1387
|
+
|
1388
|
+
@overload
|
1389
|
+
def __truediv__(self, arg: float16_t4, /) -> float16_t4: ...
|
1390
|
+
|
1391
|
+
@overload
|
1392
|
+
def __truediv__(self, arg: float16_t, /) -> float16_t4: ...
|
1393
|
+
|
1394
|
+
def __rtruediv__(self, arg: float16_t, /) -> float16_t4: ...
|
1395
|
+
|
1396
|
+
@overload
|
1397
|
+
def __iadd__(self, arg: float16_t4, /) -> float16_t4: ...
|
1398
|
+
|
1399
|
+
@overload
|
1400
|
+
def __iadd__(self, arg: float16_t, /) -> float16_t4: ...
|
1401
|
+
|
1402
|
+
@overload
|
1403
|
+
def __isub__(self, arg: float16_t4, /) -> float16_t4: ...
|
1404
|
+
|
1405
|
+
@overload
|
1406
|
+
def __isub__(self, arg: float16_t, /) -> float16_t4: ...
|
1407
|
+
|
1408
|
+
@overload
|
1409
|
+
def __imul__(self, arg: float16_t4, /) -> float16_t4: ...
|
1410
|
+
|
1411
|
+
@overload
|
1412
|
+
def __imul__(self, arg: float16_t, /) -> float16_t4: ...
|
1413
|
+
|
1414
|
+
@overload
|
1415
|
+
def __itruediv__(self, arg: float16_t4, /) -> float16_t4: ...
|
1416
|
+
|
1417
|
+
@overload
|
1418
|
+
def __itruediv__(self, arg: float16_t, /) -> float16_t4: ...
|
1419
|
+
|
1420
|
+
@overload
|
1421
|
+
def __eq__(self, arg: float16_t4, /) -> bool4: ...
|
1422
|
+
|
1423
|
+
@overload
|
1424
|
+
def __eq__(self, arg: float16_t, /) -> bool4: ...
|
1425
|
+
|
1426
|
+
@overload
|
1427
|
+
def __eq__(self, arg: float16_t, /) -> bool4: ...
|
1428
|
+
|
1429
|
+
@overload
|
1430
|
+
def __ne__(self, arg: float16_t4, /) -> bool4: ...
|
1431
|
+
|
1432
|
+
@overload
|
1433
|
+
def __ne__(self, arg: float16_t, /) -> bool4: ...
|
1434
|
+
|
1435
|
+
@overload
|
1436
|
+
def __ne__(self, arg: float16_t, /) -> bool4: ...
|
1437
|
+
|
1438
|
+
@overload
|
1439
|
+
def __lt__(self, arg: float16_t4, /) -> bool4: ...
|
1440
|
+
|
1441
|
+
@overload
|
1442
|
+
def __lt__(self, arg: float16_t, /) -> bool4: ...
|
1443
|
+
|
1444
|
+
@overload
|
1445
|
+
def __lt__(self, arg: float16_t, /) -> bool4: ...
|
1446
|
+
|
1447
|
+
@overload
|
1448
|
+
def __gt__(self, arg: float16_t, /) -> bool4: ...
|
1449
|
+
|
1450
|
+
@overload
|
1451
|
+
def __gt__(self, arg: float16_t4, /) -> bool4: ...
|
1452
|
+
|
1453
|
+
@overload
|
1454
|
+
def __gt__(self, arg: float16_t, /) -> bool4: ...
|
1455
|
+
|
1456
|
+
@overload
|
1457
|
+
def __le__(self, arg: float16_t4, /) -> bool4: ...
|
1458
|
+
|
1459
|
+
@overload
|
1460
|
+
def __le__(self, arg: float16_t, /) -> bool4: ...
|
1461
|
+
|
1462
|
+
@overload
|
1463
|
+
def __le__(self, arg: float16_t, /) -> bool4: ...
|
1464
|
+
|
1465
|
+
@overload
|
1466
|
+
def __ge__(self, arg: float16_t, /) -> bool4: ...
|
1467
|
+
|
1468
|
+
@overload
|
1469
|
+
def __ge__(self, arg: float16_t4, /) -> bool4: ...
|
1470
|
+
|
1471
|
+
@overload
|
1472
|
+
def __ge__(self, arg: float16_t, /) -> bool4: ...
|
1473
|
+
|
1474
|
+
class float2:
|
1475
|
+
@overload
|
1476
|
+
def __init__(self) -> None: ...
|
1477
|
+
|
1478
|
+
@overload
|
1479
|
+
def __init__(self, scalar: float) -> None: ...
|
1480
|
+
|
1481
|
+
@overload
|
1482
|
+
def __init__(self, x: float, y: float) -> None: ...
|
1483
|
+
|
1484
|
+
@overload
|
1485
|
+
def __init__(self, a: Sequence[float]) -> None: ...
|
1486
|
+
|
1487
|
+
@property
|
1488
|
+
def x(self) -> float: ...
|
1489
|
+
|
1490
|
+
@x.setter
|
1491
|
+
def x(self, arg: float, /) -> None: ...
|
1492
|
+
|
1493
|
+
@property
|
1494
|
+
def y(self) -> float: ...
|
1495
|
+
|
1496
|
+
@y.setter
|
1497
|
+
def y(self, arg: float, /) -> None: ...
|
1498
|
+
|
1499
|
+
def __len__(self) -> int: ...
|
1500
|
+
|
1501
|
+
def __getitem__(self, arg: int, /) -> float: ...
|
1502
|
+
|
1503
|
+
def __setitem__(self, arg0: int, arg1: float, /) -> None: ...
|
1504
|
+
|
1505
|
+
@property
|
1506
|
+
def shape(self) -> tuple: ...
|
1507
|
+
|
1508
|
+
@property
|
1509
|
+
def element_type(self) -> object: ...
|
1510
|
+
|
1511
|
+
def __repr__(self) -> str: ...
|
1512
|
+
|
1513
|
+
def __str__(self) -> str: ...
|
1514
|
+
|
1515
|
+
def __pos__(self) -> float2: ...
|
1516
|
+
|
1517
|
+
def __neg__(self) -> float2: ...
|
1518
|
+
|
1519
|
+
@overload
|
1520
|
+
def __add__(self, arg: float2, /) -> float2: ...
|
1521
|
+
|
1522
|
+
@overload
|
1523
|
+
def __add__(self, arg: float, /) -> float2: ...
|
1524
|
+
|
1525
|
+
def __radd__(self, arg: float, /) -> float2: ...
|
1526
|
+
|
1527
|
+
@overload
|
1528
|
+
def __sub__(self, arg: float2, /) -> float2: ...
|
1529
|
+
|
1530
|
+
@overload
|
1531
|
+
def __sub__(self, arg: float, /) -> float2: ...
|
1532
|
+
|
1533
|
+
def __rsub__(self, arg: float, /) -> float2: ...
|
1534
|
+
|
1535
|
+
@overload
|
1536
|
+
def __mul__(self, arg: float2, /) -> float2: ...
|
1537
|
+
|
1538
|
+
@overload
|
1539
|
+
def __mul__(self, arg: float, /) -> float2: ...
|
1540
|
+
|
1541
|
+
def __rmul__(self, arg: float, /) -> float2: ...
|
1542
|
+
|
1543
|
+
@overload
|
1544
|
+
def __truediv__(self, arg: float2, /) -> float2: ...
|
1545
|
+
|
1546
|
+
@overload
|
1547
|
+
def __truediv__(self, arg: float, /) -> float2: ...
|
1548
|
+
|
1549
|
+
def __rtruediv__(self, arg: float, /) -> float2: ...
|
1550
|
+
|
1551
|
+
@overload
|
1552
|
+
def __iadd__(self, arg: float2, /) -> float2: ...
|
1553
|
+
|
1554
|
+
@overload
|
1555
|
+
def __iadd__(self, arg: float, /) -> float2: ...
|
1556
|
+
|
1557
|
+
@overload
|
1558
|
+
def __isub__(self, arg: float2, /) -> float2: ...
|
1559
|
+
|
1560
|
+
@overload
|
1561
|
+
def __isub__(self, arg: float, /) -> float2: ...
|
1562
|
+
|
1563
|
+
@overload
|
1564
|
+
def __imul__(self, arg: float2, /) -> float2: ...
|
1565
|
+
|
1566
|
+
@overload
|
1567
|
+
def __imul__(self, arg: float, /) -> float2: ...
|
1568
|
+
|
1569
|
+
@overload
|
1570
|
+
def __itruediv__(self, arg: float2, /) -> float2: ...
|
1571
|
+
|
1572
|
+
@overload
|
1573
|
+
def __itruediv__(self, arg: float, /) -> float2: ...
|
1574
|
+
|
1575
|
+
@overload
|
1576
|
+
def __eq__(self, arg: float2, /) -> bool2: ...
|
1577
|
+
|
1578
|
+
@overload
|
1579
|
+
def __eq__(self, arg: float, /) -> bool2: ...
|
1580
|
+
|
1581
|
+
@overload
|
1582
|
+
def __eq__(self, arg: float, /) -> bool2: ...
|
1583
|
+
|
1584
|
+
@overload
|
1585
|
+
def __ne__(self, arg: float2, /) -> bool2: ...
|
1586
|
+
|
1587
|
+
@overload
|
1588
|
+
def __ne__(self, arg: float, /) -> bool2: ...
|
1589
|
+
|
1590
|
+
@overload
|
1591
|
+
def __ne__(self, arg: float, /) -> bool2: ...
|
1592
|
+
|
1593
|
+
@overload
|
1594
|
+
def __lt__(self, arg: float2, /) -> bool2: ...
|
1595
|
+
|
1596
|
+
@overload
|
1597
|
+
def __lt__(self, arg: float, /) -> bool2: ...
|
1598
|
+
|
1599
|
+
@overload
|
1600
|
+
def __lt__(self, arg: float, /) -> bool2: ...
|
1601
|
+
|
1602
|
+
@overload
|
1603
|
+
def __gt__(self, arg: float, /) -> bool2: ...
|
1604
|
+
|
1605
|
+
@overload
|
1606
|
+
def __gt__(self, arg: float2, /) -> bool2: ...
|
1607
|
+
|
1608
|
+
@overload
|
1609
|
+
def __gt__(self, arg: float, /) -> bool2: ...
|
1610
|
+
|
1611
|
+
@overload
|
1612
|
+
def __le__(self, arg: float2, /) -> bool2: ...
|
1613
|
+
|
1614
|
+
@overload
|
1615
|
+
def __le__(self, arg: float, /) -> bool2: ...
|
1616
|
+
|
1617
|
+
@overload
|
1618
|
+
def __le__(self, arg: float, /) -> bool2: ...
|
1619
|
+
|
1620
|
+
@overload
|
1621
|
+
def __ge__(self, arg: float, /) -> bool2: ...
|
1622
|
+
|
1623
|
+
@overload
|
1624
|
+
def __ge__(self, arg: float2, /) -> bool2: ...
|
1625
|
+
|
1626
|
+
@overload
|
1627
|
+
def __ge__(self, arg: float, /) -> bool2: ...
|
1628
|
+
|
1629
|
+
class float2x2:
|
1630
|
+
@overload
|
1631
|
+
def __init__(self) -> None: ...
|
1632
|
+
|
1633
|
+
@overload
|
1634
|
+
def __init__(self, arg: Sequence[float], /) -> None: ...
|
1635
|
+
|
1636
|
+
@overload
|
1637
|
+
def __init__(self, arg: Annotated[ArrayLike, dict(dtype='float32', shape=(2, 2))], /) -> None: ...
|
1638
|
+
|
1639
|
+
@staticmethod
|
1640
|
+
def zeros() -> float2x2: ...
|
1641
|
+
|
1642
|
+
@staticmethod
|
1643
|
+
def identity() -> float2x2: ...
|
1644
|
+
|
1645
|
+
@overload
|
1646
|
+
def __getitem__(self, arg: int, /) -> float2: ...
|
1647
|
+
|
1648
|
+
@overload
|
1649
|
+
def __getitem__(self, arg: Sequence[int], /) -> float: ...
|
1650
|
+
|
1651
|
+
@overload
|
1652
|
+
def __setitem__(self, arg0: int, arg1: float2, /) -> None: ...
|
1653
|
+
|
1654
|
+
@overload
|
1655
|
+
def __setitem__(self, arg0: Sequence[int], arg1: float, /) -> None: ...
|
1656
|
+
|
1657
|
+
def get_row(self, row: int) -> float2: ...
|
1658
|
+
|
1659
|
+
def set_row(self, row: int, value: float2) -> None: ...
|
1660
|
+
|
1661
|
+
def get_col(self, col: int) -> float2: ...
|
1662
|
+
|
1663
|
+
def set_col(self, col: int, value: float2) -> None: ...
|
1664
|
+
|
1665
|
+
@property
|
1666
|
+
def shape(self) -> tuple: ...
|
1667
|
+
|
1668
|
+
@property
|
1669
|
+
def element_type(self) -> object: ...
|
1670
|
+
|
1671
|
+
def __dlpack__(self) -> Annotated[ArrayLike, dict(dtype='float32')]: ...
|
1672
|
+
|
1673
|
+
def to_numpy(self) -> Annotated[ArrayLike, dict(dtype='float32', shape=(2, 2), writable=False)]: ...
|
1674
|
+
|
1675
|
+
def __repr__(self) -> str: ...
|
1676
|
+
|
1677
|
+
def __str__(self) -> str: ...
|
1678
|
+
|
1679
|
+
def __eq__(self, arg: float2x2, /) -> bool: ...
|
1680
|
+
|
1681
|
+
def __ne__(self, arg: float2x2, /) -> bool: ...
|
1682
|
+
|
1683
|
+
class float2x4:
|
1684
|
+
@overload
|
1685
|
+
def __init__(self) -> None: ...
|
1686
|
+
|
1687
|
+
@overload
|
1688
|
+
def __init__(self, arg: Sequence[float], /) -> None: ...
|
1689
|
+
|
1690
|
+
@overload
|
1691
|
+
def __init__(self, arg: Annotated[ArrayLike, dict(dtype='float32', shape=(2, 4))], /) -> None: ...
|
1692
|
+
|
1693
|
+
@staticmethod
|
1694
|
+
def zeros() -> float2x4: ...
|
1695
|
+
|
1696
|
+
@staticmethod
|
1697
|
+
def identity() -> float2x4: ...
|
1698
|
+
|
1699
|
+
@overload
|
1700
|
+
def __getitem__(self, arg: int, /) -> float4: ...
|
1701
|
+
|
1702
|
+
@overload
|
1703
|
+
def __getitem__(self, arg: Sequence[int], /) -> float: ...
|
1704
|
+
|
1705
|
+
@overload
|
1706
|
+
def __setitem__(self, arg0: int, arg1: float4, /) -> None: ...
|
1707
|
+
|
1708
|
+
@overload
|
1709
|
+
def __setitem__(self, arg0: Sequence[int], arg1: float, /) -> None: ...
|
1710
|
+
|
1711
|
+
def get_row(self, row: int) -> float4: ...
|
1712
|
+
|
1713
|
+
def set_row(self, row: int, value: float4) -> None: ...
|
1714
|
+
|
1715
|
+
def get_col(self, col: int) -> float2: ...
|
1716
|
+
|
1717
|
+
def set_col(self, col: int, value: float2) -> None: ...
|
1718
|
+
|
1719
|
+
@property
|
1720
|
+
def shape(self) -> tuple: ...
|
1721
|
+
|
1722
|
+
@property
|
1723
|
+
def element_type(self) -> object: ...
|
1724
|
+
|
1725
|
+
def __dlpack__(self) -> Annotated[ArrayLike, dict(dtype='float32')]: ...
|
1726
|
+
|
1727
|
+
def to_numpy(self) -> Annotated[ArrayLike, dict(dtype='float32', shape=(2, 4), writable=False)]: ...
|
1728
|
+
|
1729
|
+
def __repr__(self) -> str: ...
|
1730
|
+
|
1731
|
+
def __str__(self) -> str: ...
|
1732
|
+
|
1733
|
+
def __eq__(self, arg: float2x4, /) -> bool: ...
|
1734
|
+
|
1735
|
+
def __ne__(self, arg: float2x4, /) -> bool: ...
|
1736
|
+
|
1737
|
+
class float3:
|
1738
|
+
@overload
|
1739
|
+
def __init__(self) -> None: ...
|
1740
|
+
|
1741
|
+
@overload
|
1742
|
+
def __init__(self, scalar: float) -> None: ...
|
1743
|
+
|
1744
|
+
@overload
|
1745
|
+
def __init__(self, x: float, y: float, z: float) -> None: ...
|
1746
|
+
|
1747
|
+
@overload
|
1748
|
+
def __init__(self, xy: float2, z: float) -> None: ...
|
1749
|
+
|
1750
|
+
@overload
|
1751
|
+
def __init__(self, x: float, yz: float2) -> None: ...
|
1752
|
+
|
1753
|
+
@overload
|
1754
|
+
def __init__(self, a: Sequence[float]) -> None: ...
|
1755
|
+
|
1756
|
+
@property
|
1757
|
+
def x(self) -> float: ...
|
1758
|
+
|
1759
|
+
@x.setter
|
1760
|
+
def x(self, arg: float, /) -> None: ...
|
1761
|
+
|
1762
|
+
@property
|
1763
|
+
def y(self) -> float: ...
|
1764
|
+
|
1765
|
+
@y.setter
|
1766
|
+
def y(self, arg: float, /) -> None: ...
|
1767
|
+
|
1768
|
+
@property
|
1769
|
+
def z(self) -> float: ...
|
1770
|
+
|
1771
|
+
@z.setter
|
1772
|
+
def z(self, arg: float, /) -> None: ...
|
1773
|
+
|
1774
|
+
def __len__(self) -> int: ...
|
1775
|
+
|
1776
|
+
def __getitem__(self, arg: int, /) -> float: ...
|
1777
|
+
|
1778
|
+
def __setitem__(self, arg0: int, arg1: float, /) -> None: ...
|
1779
|
+
|
1780
|
+
@property
|
1781
|
+
def shape(self) -> tuple: ...
|
1782
|
+
|
1783
|
+
@property
|
1784
|
+
def element_type(self) -> object: ...
|
1785
|
+
|
1786
|
+
def __repr__(self) -> str: ...
|
1787
|
+
|
1788
|
+
def __str__(self) -> str: ...
|
1789
|
+
|
1790
|
+
def __pos__(self) -> float3: ...
|
1791
|
+
|
1792
|
+
def __neg__(self) -> float3: ...
|
1793
|
+
|
1794
|
+
@overload
|
1795
|
+
def __add__(self, arg: float3, /) -> float3: ...
|
1796
|
+
|
1797
|
+
@overload
|
1798
|
+
def __add__(self, arg: float, /) -> float3: ...
|
1799
|
+
|
1800
|
+
def __radd__(self, arg: float, /) -> float3: ...
|
1801
|
+
|
1802
|
+
@overload
|
1803
|
+
def __sub__(self, arg: float3, /) -> float3: ...
|
1804
|
+
|
1805
|
+
@overload
|
1806
|
+
def __sub__(self, arg: float, /) -> float3: ...
|
1807
|
+
|
1808
|
+
def __rsub__(self, arg: float, /) -> float3: ...
|
1809
|
+
|
1810
|
+
@overload
|
1811
|
+
def __mul__(self, arg: float3, /) -> float3: ...
|
1812
|
+
|
1813
|
+
@overload
|
1814
|
+
def __mul__(self, arg: float, /) -> float3: ...
|
1815
|
+
|
1816
|
+
def __rmul__(self, arg: float, /) -> float3: ...
|
1817
|
+
|
1818
|
+
@overload
|
1819
|
+
def __truediv__(self, arg: float3, /) -> float3: ...
|
1820
|
+
|
1821
|
+
@overload
|
1822
|
+
def __truediv__(self, arg: float, /) -> float3: ...
|
1823
|
+
|
1824
|
+
def __rtruediv__(self, arg: float, /) -> float3: ...
|
1825
|
+
|
1826
|
+
@overload
|
1827
|
+
def __iadd__(self, arg: float3, /) -> float3: ...
|
1828
|
+
|
1829
|
+
@overload
|
1830
|
+
def __iadd__(self, arg: float, /) -> float3: ...
|
1831
|
+
|
1832
|
+
@overload
|
1833
|
+
def __isub__(self, arg: float3, /) -> float3: ...
|
1834
|
+
|
1835
|
+
@overload
|
1836
|
+
def __isub__(self, arg: float, /) -> float3: ...
|
1837
|
+
|
1838
|
+
@overload
|
1839
|
+
def __imul__(self, arg: float3, /) -> float3: ...
|
1840
|
+
|
1841
|
+
@overload
|
1842
|
+
def __imul__(self, arg: float, /) -> float3: ...
|
1843
|
+
|
1844
|
+
@overload
|
1845
|
+
def __itruediv__(self, arg: float3, /) -> float3: ...
|
1846
|
+
|
1847
|
+
@overload
|
1848
|
+
def __itruediv__(self, arg: float, /) -> float3: ...
|
1849
|
+
|
1850
|
+
@overload
|
1851
|
+
def __eq__(self, arg: float3, /) -> bool3: ...
|
1852
|
+
|
1853
|
+
@overload
|
1854
|
+
def __eq__(self, arg: float, /) -> bool3: ...
|
1855
|
+
|
1856
|
+
@overload
|
1857
|
+
def __eq__(self, arg: float, /) -> bool3: ...
|
1858
|
+
|
1859
|
+
@overload
|
1860
|
+
def __ne__(self, arg: float3, /) -> bool3: ...
|
1861
|
+
|
1862
|
+
@overload
|
1863
|
+
def __ne__(self, arg: float, /) -> bool3: ...
|
1864
|
+
|
1865
|
+
@overload
|
1866
|
+
def __ne__(self, arg: float, /) -> bool3: ...
|
1867
|
+
|
1868
|
+
@overload
|
1869
|
+
def __lt__(self, arg: float3, /) -> bool3: ...
|
1870
|
+
|
1871
|
+
@overload
|
1872
|
+
def __lt__(self, arg: float, /) -> bool3: ...
|
1873
|
+
|
1874
|
+
@overload
|
1875
|
+
def __lt__(self, arg: float, /) -> bool3: ...
|
1876
|
+
|
1877
|
+
@overload
|
1878
|
+
def __gt__(self, arg: float, /) -> bool3: ...
|
1879
|
+
|
1880
|
+
@overload
|
1881
|
+
def __gt__(self, arg: float3, /) -> bool3: ...
|
1882
|
+
|
1883
|
+
@overload
|
1884
|
+
def __gt__(self, arg: float, /) -> bool3: ...
|
1885
|
+
|
1886
|
+
@overload
|
1887
|
+
def __le__(self, arg: float3, /) -> bool3: ...
|
1888
|
+
|
1889
|
+
@overload
|
1890
|
+
def __le__(self, arg: float, /) -> bool3: ...
|
1891
|
+
|
1892
|
+
@overload
|
1893
|
+
def __le__(self, arg: float, /) -> bool3: ...
|
1894
|
+
|
1895
|
+
@overload
|
1896
|
+
def __ge__(self, arg: float, /) -> bool3: ...
|
1897
|
+
|
1898
|
+
@overload
|
1899
|
+
def __ge__(self, arg: float3, /) -> bool3: ...
|
1900
|
+
|
1901
|
+
@overload
|
1902
|
+
def __ge__(self, arg: float, /) -> bool3: ...
|
1903
|
+
|
1904
|
+
class float3x3:
|
1905
|
+
@overload
|
1906
|
+
def __init__(self) -> None: ...
|
1907
|
+
|
1908
|
+
@overload
|
1909
|
+
def __init__(self, arg: float4x4, /) -> None: ...
|
1910
|
+
|
1911
|
+
@overload
|
1912
|
+
def __init__(self, arg: float3x4, /) -> None: ...
|
1913
|
+
|
1914
|
+
@overload
|
1915
|
+
def __init__(self, arg: Sequence[float], /) -> None: ...
|
1916
|
+
|
1917
|
+
@overload
|
1918
|
+
def __init__(self, arg: Annotated[ArrayLike, dict(dtype='float32', shape=(3, 3))], /) -> None: ...
|
1919
|
+
|
1920
|
+
@staticmethod
|
1921
|
+
def zeros() -> float3x3: ...
|
1922
|
+
|
1923
|
+
@staticmethod
|
1924
|
+
def identity() -> float3x3: ...
|
1925
|
+
|
1926
|
+
@overload
|
1927
|
+
def __getitem__(self, arg: int, /) -> float3: ...
|
1928
|
+
|
1929
|
+
@overload
|
1930
|
+
def __getitem__(self, arg: Sequence[int], /) -> float: ...
|
1931
|
+
|
1932
|
+
@overload
|
1933
|
+
def __setitem__(self, arg0: int, arg1: float3, /) -> None: ...
|
1934
|
+
|
1935
|
+
@overload
|
1936
|
+
def __setitem__(self, arg0: Sequence[int], arg1: float, /) -> None: ...
|
1937
|
+
|
1938
|
+
def get_row(self, row: int) -> float3: ...
|
1939
|
+
|
1940
|
+
def set_row(self, row: int, value: float3) -> None: ...
|
1941
|
+
|
1942
|
+
def get_col(self, col: int) -> float3: ...
|
1943
|
+
|
1944
|
+
def set_col(self, col: int, value: float3) -> None: ...
|
1945
|
+
|
1946
|
+
@property
|
1947
|
+
def shape(self) -> tuple: ...
|
1948
|
+
|
1949
|
+
@property
|
1950
|
+
def element_type(self) -> object: ...
|
1951
|
+
|
1952
|
+
def __dlpack__(self) -> Annotated[ArrayLike, dict(dtype='float32')]: ...
|
1953
|
+
|
1954
|
+
def to_numpy(self) -> Annotated[ArrayLike, dict(dtype='float32', shape=(3, 3), writable=False)]: ...
|
1955
|
+
|
1956
|
+
def __repr__(self) -> str: ...
|
1957
|
+
|
1958
|
+
def __str__(self) -> str: ...
|
1959
|
+
|
1960
|
+
def __eq__(self, arg: float3x3, /) -> bool: ...
|
1961
|
+
|
1962
|
+
def __ne__(self, arg: float3x3, /) -> bool: ...
|
1963
|
+
|
1964
|
+
class float3x4:
|
1965
|
+
@overload
|
1966
|
+
def __init__(self) -> None: ...
|
1967
|
+
|
1968
|
+
@overload
|
1969
|
+
def __init__(self, arg: float3x3, /) -> None: ...
|
1970
|
+
|
1971
|
+
@overload
|
1972
|
+
def __init__(self, arg: float4x4, /) -> None: ...
|
1973
|
+
|
1974
|
+
@overload
|
1975
|
+
def __init__(self, arg: Sequence[float], /) -> None: ...
|
1976
|
+
|
1977
|
+
@overload
|
1978
|
+
def __init__(self, arg: Annotated[ArrayLike, dict(dtype='float32', shape=(3, 4))], /) -> None: ...
|
1979
|
+
|
1980
|
+
@staticmethod
|
1981
|
+
def zeros() -> float3x4: ...
|
1982
|
+
|
1983
|
+
@staticmethod
|
1984
|
+
def identity() -> float3x4: ...
|
1985
|
+
|
1986
|
+
@overload
|
1987
|
+
def __getitem__(self, arg: int, /) -> float4: ...
|
1988
|
+
|
1989
|
+
@overload
|
1990
|
+
def __getitem__(self, arg: Sequence[int], /) -> float: ...
|
1991
|
+
|
1992
|
+
@overload
|
1993
|
+
def __setitem__(self, arg0: int, arg1: float4, /) -> None: ...
|
1994
|
+
|
1995
|
+
@overload
|
1996
|
+
def __setitem__(self, arg0: Sequence[int], arg1: float, /) -> None: ...
|
1997
|
+
|
1998
|
+
def get_row(self, row: int) -> float4: ...
|
1999
|
+
|
2000
|
+
def set_row(self, row: int, value: float4) -> None: ...
|
2001
|
+
|
2002
|
+
def get_col(self, col: int) -> float3: ...
|
2003
|
+
|
2004
|
+
def set_col(self, col: int, value: float3) -> None: ...
|
2005
|
+
|
2006
|
+
@property
|
2007
|
+
def shape(self) -> tuple: ...
|
2008
|
+
|
2009
|
+
@property
|
2010
|
+
def element_type(self) -> object: ...
|
2011
|
+
|
2012
|
+
def __dlpack__(self) -> Annotated[ArrayLike, dict(dtype='float32')]: ...
|
2013
|
+
|
2014
|
+
def to_numpy(self) -> Annotated[ArrayLike, dict(dtype='float32', shape=(3, 4), writable=False)]: ...
|
2015
|
+
|
2016
|
+
def __repr__(self) -> str: ...
|
2017
|
+
|
2018
|
+
def __str__(self) -> str: ...
|
2019
|
+
|
2020
|
+
def __eq__(self, arg: float3x4, /) -> bool: ...
|
2021
|
+
|
2022
|
+
def __ne__(self, arg: float3x4, /) -> bool: ...
|
2023
|
+
|
2024
|
+
class float4:
|
2025
|
+
@overload
|
2026
|
+
def __init__(self) -> None: ...
|
2027
|
+
|
2028
|
+
@overload
|
2029
|
+
def __init__(self, scalar: float) -> None: ...
|
2030
|
+
|
2031
|
+
@overload
|
2032
|
+
def __init__(self, x: float, y: float, z: float, w: float) -> None: ...
|
2033
|
+
|
2034
|
+
@overload
|
2035
|
+
def __init__(self, xy: float2, zw: float2) -> None: ...
|
2036
|
+
|
2037
|
+
@overload
|
2038
|
+
def __init__(self, xyz: float3, w: float) -> None: ...
|
2039
|
+
|
2040
|
+
@overload
|
2041
|
+
def __init__(self, x: float, yzw: float3) -> None: ...
|
2042
|
+
|
2043
|
+
@overload
|
2044
|
+
def __init__(self, a: Sequence[float]) -> None: ...
|
2045
|
+
|
2046
|
+
@property
|
2047
|
+
def x(self) -> float: ...
|
2048
|
+
|
2049
|
+
@x.setter
|
2050
|
+
def x(self, arg: float, /) -> None: ...
|
2051
|
+
|
2052
|
+
@property
|
2053
|
+
def y(self) -> float: ...
|
2054
|
+
|
2055
|
+
@y.setter
|
2056
|
+
def y(self, arg: float, /) -> None: ...
|
2057
|
+
|
2058
|
+
@property
|
2059
|
+
def z(self) -> float: ...
|
2060
|
+
|
2061
|
+
@z.setter
|
2062
|
+
def z(self, arg: float, /) -> None: ...
|
2063
|
+
|
2064
|
+
@property
|
2065
|
+
def w(self) -> float: ...
|
2066
|
+
|
2067
|
+
@w.setter
|
2068
|
+
def w(self, arg: float, /) -> None: ...
|
2069
|
+
|
2070
|
+
def __len__(self) -> int: ...
|
2071
|
+
|
2072
|
+
def __getitem__(self, arg: int, /) -> float: ...
|
2073
|
+
|
2074
|
+
def __setitem__(self, arg0: int, arg1: float, /) -> None: ...
|
2075
|
+
|
2076
|
+
@property
|
2077
|
+
def shape(self) -> tuple: ...
|
2078
|
+
|
2079
|
+
@property
|
2080
|
+
def element_type(self) -> object: ...
|
2081
|
+
|
2082
|
+
def __repr__(self) -> str: ...
|
2083
|
+
|
2084
|
+
def __str__(self) -> str: ...
|
2085
|
+
|
2086
|
+
def __pos__(self) -> float4: ...
|
2087
|
+
|
2088
|
+
def __neg__(self) -> float4: ...
|
2089
|
+
|
2090
|
+
@overload
|
2091
|
+
def __add__(self, arg: float4, /) -> float4: ...
|
2092
|
+
|
2093
|
+
@overload
|
2094
|
+
def __add__(self, arg: float, /) -> float4: ...
|
2095
|
+
|
2096
|
+
def __radd__(self, arg: float, /) -> float4: ...
|
2097
|
+
|
2098
|
+
@overload
|
2099
|
+
def __sub__(self, arg: float4, /) -> float4: ...
|
2100
|
+
|
2101
|
+
@overload
|
2102
|
+
def __sub__(self, arg: float, /) -> float4: ...
|
2103
|
+
|
2104
|
+
def __rsub__(self, arg: float, /) -> float4: ...
|
2105
|
+
|
2106
|
+
@overload
|
2107
|
+
def __mul__(self, arg: float4, /) -> float4: ...
|
2108
|
+
|
2109
|
+
@overload
|
2110
|
+
def __mul__(self, arg: float, /) -> float4: ...
|
2111
|
+
|
2112
|
+
def __rmul__(self, arg: float, /) -> float4: ...
|
2113
|
+
|
2114
|
+
@overload
|
2115
|
+
def __truediv__(self, arg: float4, /) -> float4: ...
|
2116
|
+
|
2117
|
+
@overload
|
2118
|
+
def __truediv__(self, arg: float, /) -> float4: ...
|
2119
|
+
|
2120
|
+
def __rtruediv__(self, arg: float, /) -> float4: ...
|
2121
|
+
|
2122
|
+
@overload
|
2123
|
+
def __iadd__(self, arg: float4, /) -> float4: ...
|
2124
|
+
|
2125
|
+
@overload
|
2126
|
+
def __iadd__(self, arg: float, /) -> float4: ...
|
2127
|
+
|
2128
|
+
@overload
|
2129
|
+
def __isub__(self, arg: float4, /) -> float4: ...
|
2130
|
+
|
2131
|
+
@overload
|
2132
|
+
def __isub__(self, arg: float, /) -> float4: ...
|
2133
|
+
|
2134
|
+
@overload
|
2135
|
+
def __imul__(self, arg: float4, /) -> float4: ...
|
2136
|
+
|
2137
|
+
@overload
|
2138
|
+
def __imul__(self, arg: float, /) -> float4: ...
|
2139
|
+
|
2140
|
+
@overload
|
2141
|
+
def __itruediv__(self, arg: float4, /) -> float4: ...
|
2142
|
+
|
2143
|
+
@overload
|
2144
|
+
def __itruediv__(self, arg: float, /) -> float4: ...
|
2145
|
+
|
2146
|
+
@overload
|
2147
|
+
def __eq__(self, arg: float4, /) -> bool4: ...
|
2148
|
+
|
2149
|
+
@overload
|
2150
|
+
def __eq__(self, arg: float, /) -> bool4: ...
|
2151
|
+
|
2152
|
+
@overload
|
2153
|
+
def __eq__(self, arg: float, /) -> bool4: ...
|
2154
|
+
|
2155
|
+
@overload
|
2156
|
+
def __ne__(self, arg: float4, /) -> bool4: ...
|
2157
|
+
|
2158
|
+
@overload
|
2159
|
+
def __ne__(self, arg: float, /) -> bool4: ...
|
2160
|
+
|
2161
|
+
@overload
|
2162
|
+
def __ne__(self, arg: float, /) -> bool4: ...
|
2163
|
+
|
2164
|
+
@overload
|
2165
|
+
def __lt__(self, arg: float4, /) -> bool4: ...
|
2166
|
+
|
2167
|
+
@overload
|
2168
|
+
def __lt__(self, arg: float, /) -> bool4: ...
|
2169
|
+
|
2170
|
+
@overload
|
2171
|
+
def __lt__(self, arg: float, /) -> bool4: ...
|
2172
|
+
|
2173
|
+
@overload
|
2174
|
+
def __gt__(self, arg: float, /) -> bool4: ...
|
2175
|
+
|
2176
|
+
@overload
|
2177
|
+
def __gt__(self, arg: float4, /) -> bool4: ...
|
2178
|
+
|
2179
|
+
@overload
|
2180
|
+
def __gt__(self, arg: float, /) -> bool4: ...
|
2181
|
+
|
2182
|
+
@overload
|
2183
|
+
def __le__(self, arg: float4, /) -> bool4: ...
|
2184
|
+
|
2185
|
+
@overload
|
2186
|
+
def __le__(self, arg: float, /) -> bool4: ...
|
2187
|
+
|
2188
|
+
@overload
|
2189
|
+
def __le__(self, arg: float, /) -> bool4: ...
|
2190
|
+
|
2191
|
+
@overload
|
2192
|
+
def __ge__(self, arg: float, /) -> bool4: ...
|
2193
|
+
|
2194
|
+
@overload
|
2195
|
+
def __ge__(self, arg: float4, /) -> bool4: ...
|
2196
|
+
|
2197
|
+
@overload
|
2198
|
+
def __ge__(self, arg: float, /) -> bool4: ...
|
2199
|
+
|
2200
|
+
class float4x4:
|
2201
|
+
@overload
|
2202
|
+
def __init__(self) -> None: ...
|
2203
|
+
|
2204
|
+
@overload
|
2205
|
+
def __init__(self, arg: float3x3, /) -> None: ...
|
2206
|
+
|
2207
|
+
@overload
|
2208
|
+
def __init__(self, arg: float3x4, /) -> None: ...
|
2209
|
+
|
2210
|
+
@overload
|
2211
|
+
def __init__(self, arg: Sequence[float], /) -> None: ...
|
2212
|
+
|
2213
|
+
@overload
|
2214
|
+
def __init__(self, arg: Annotated[ArrayLike, dict(dtype='float32', shape=(4, 4))], /) -> None: ...
|
2215
|
+
|
2216
|
+
@staticmethod
|
2217
|
+
def zeros() -> float4x4: ...
|
2218
|
+
|
2219
|
+
@staticmethod
|
2220
|
+
def identity() -> float4x4: ...
|
2221
|
+
|
2222
|
+
@overload
|
2223
|
+
def __getitem__(self, arg: int, /) -> float4: ...
|
2224
|
+
|
2225
|
+
@overload
|
2226
|
+
def __getitem__(self, arg: Sequence[int], /) -> float: ...
|
2227
|
+
|
2228
|
+
@overload
|
2229
|
+
def __setitem__(self, arg0: int, arg1: float4, /) -> None: ...
|
2230
|
+
|
2231
|
+
@overload
|
2232
|
+
def __setitem__(self, arg0: Sequence[int], arg1: float, /) -> None: ...
|
2233
|
+
|
2234
|
+
def get_row(self, row: int) -> float4: ...
|
2235
|
+
|
2236
|
+
def set_row(self, row: int, value: float4) -> None: ...
|
2237
|
+
|
2238
|
+
def get_col(self, col: int) -> float4: ...
|
2239
|
+
|
2240
|
+
def set_col(self, col: int, value: float4) -> None: ...
|
2241
|
+
|
2242
|
+
@property
|
2243
|
+
def shape(self) -> tuple: ...
|
2244
|
+
|
2245
|
+
@property
|
2246
|
+
def element_type(self) -> object: ...
|
2247
|
+
|
2248
|
+
def __dlpack__(self) -> Annotated[ArrayLike, dict(dtype='float32')]: ...
|
2249
|
+
|
2250
|
+
def to_numpy(self) -> Annotated[ArrayLike, dict(dtype='float32', shape=(4, 4), writable=False)]: ...
|
2251
|
+
|
2252
|
+
def __repr__(self) -> str: ...
|
2253
|
+
|
2254
|
+
def __str__(self) -> str: ...
|
2255
|
+
|
2256
|
+
def __eq__(self, arg: float4x4, /) -> bool: ...
|
2257
|
+
|
2258
|
+
def __ne__(self, arg: float4x4, /) -> bool: ...
|
2259
|
+
|
2260
|
+
@overload
|
2261
|
+
def floor(x: float) -> float: ...
|
2262
|
+
|
2263
|
+
@overload
|
2264
|
+
def floor(x: float) -> float: ...
|
2265
|
+
|
2266
|
+
@overload
|
2267
|
+
def floor(x: float1) -> float1: ...
|
2268
|
+
|
2269
|
+
@overload
|
2270
|
+
def floor(x: float2) -> float2: ...
|
2271
|
+
|
2272
|
+
@overload
|
2273
|
+
def floor(x: float3) -> float3: ...
|
2274
|
+
|
2275
|
+
@overload
|
2276
|
+
def floor(x: float4) -> float4: ...
|
2277
|
+
|
2278
|
+
@overload
|
2279
|
+
def fmod(x: float, y: float) -> float: ...
|
2280
|
+
|
2281
|
+
@overload
|
2282
|
+
def fmod(x: float, y: float) -> float: ...
|
2283
|
+
|
2284
|
+
@overload
|
2285
|
+
def fmod(x: float1, y: float1) -> float1: ...
|
2286
|
+
|
2287
|
+
@overload
|
2288
|
+
def fmod(x: float2, y: float2) -> float2: ...
|
2289
|
+
|
2290
|
+
@overload
|
2291
|
+
def fmod(x: float3, y: float3) -> float3: ...
|
2292
|
+
|
2293
|
+
@overload
|
2294
|
+
def fmod(x: float4, y: float4) -> float4: ...
|
2295
|
+
|
2296
|
+
@overload
|
2297
|
+
def frac(x: float) -> float: ...
|
2298
|
+
|
2299
|
+
@overload
|
2300
|
+
def frac(x: float) -> float: ...
|
2301
|
+
|
2302
|
+
@overload
|
2303
|
+
def frac(x: float1) -> float1: ...
|
2304
|
+
|
2305
|
+
@overload
|
2306
|
+
def frac(x: float2) -> float2: ...
|
2307
|
+
|
2308
|
+
@overload
|
2309
|
+
def frac(x: float3) -> float3: ...
|
2310
|
+
|
2311
|
+
@overload
|
2312
|
+
def frac(x: float4) -> float4: ...
|
2313
|
+
|
2314
|
+
class int1:
|
2315
|
+
@overload
|
2316
|
+
def __init__(self) -> None: ...
|
2317
|
+
|
2318
|
+
@overload
|
2319
|
+
def __init__(self, scalar: int) -> None: ...
|
2320
|
+
|
2321
|
+
@overload
|
2322
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
2323
|
+
|
2324
|
+
@property
|
2325
|
+
def x(self) -> int: ...
|
2326
|
+
|
2327
|
+
@x.setter
|
2328
|
+
def x(self, arg: int, /) -> None: ...
|
2329
|
+
|
2330
|
+
def __len__(self) -> int: ...
|
2331
|
+
|
2332
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
2333
|
+
|
2334
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
2335
|
+
|
2336
|
+
@property
|
2337
|
+
def shape(self) -> tuple: ...
|
2338
|
+
|
2339
|
+
@property
|
2340
|
+
def element_type(self) -> object: ...
|
2341
|
+
|
2342
|
+
def __repr__(self) -> str: ...
|
2343
|
+
|
2344
|
+
def __str__(self) -> str: ...
|
2345
|
+
|
2346
|
+
def __pos__(self) -> int1: ...
|
2347
|
+
|
2348
|
+
def __neg__(self) -> int1: ...
|
2349
|
+
|
2350
|
+
@overload
|
2351
|
+
def __add__(self, arg: int1, /) -> int1: ...
|
2352
|
+
|
2353
|
+
@overload
|
2354
|
+
def __add__(self, arg: int, /) -> int1: ...
|
2355
|
+
|
2356
|
+
def __radd__(self, arg: int, /) -> int1: ...
|
2357
|
+
|
2358
|
+
@overload
|
2359
|
+
def __sub__(self, arg: int1, /) -> int1: ...
|
2360
|
+
|
2361
|
+
@overload
|
2362
|
+
def __sub__(self, arg: int, /) -> int1: ...
|
2363
|
+
|
2364
|
+
def __rsub__(self, arg: int, /) -> int1: ...
|
2365
|
+
|
2366
|
+
@overload
|
2367
|
+
def __mul__(self, arg: int1, /) -> int1: ...
|
2368
|
+
|
2369
|
+
@overload
|
2370
|
+
def __mul__(self, arg: int, /) -> int1: ...
|
2371
|
+
|
2372
|
+
def __rmul__(self, arg: int, /) -> int1: ...
|
2373
|
+
|
2374
|
+
@overload
|
2375
|
+
def __truediv__(self, arg: int1, /) -> int1: ...
|
2376
|
+
|
2377
|
+
@overload
|
2378
|
+
def __truediv__(self, arg: int, /) -> int1: ...
|
2379
|
+
|
2380
|
+
def __rtruediv__(self, arg: int, /) -> int1: ...
|
2381
|
+
|
2382
|
+
@overload
|
2383
|
+
def __iadd__(self, arg: int1, /) -> int1: ...
|
2384
|
+
|
2385
|
+
@overload
|
2386
|
+
def __iadd__(self, arg: int, /) -> int1: ...
|
2387
|
+
|
2388
|
+
@overload
|
2389
|
+
def __isub__(self, arg: int1, /) -> int1: ...
|
2390
|
+
|
2391
|
+
@overload
|
2392
|
+
def __isub__(self, arg: int, /) -> int1: ...
|
2393
|
+
|
2394
|
+
@overload
|
2395
|
+
def __imul__(self, arg: int1, /) -> int1: ...
|
2396
|
+
|
2397
|
+
@overload
|
2398
|
+
def __imul__(self, arg: int, /) -> int1: ...
|
2399
|
+
|
2400
|
+
@overload
|
2401
|
+
def __itruediv__(self, arg: int1, /) -> int1: ...
|
2402
|
+
|
2403
|
+
@overload
|
2404
|
+
def __itruediv__(self, arg: int, /) -> int1: ...
|
2405
|
+
|
2406
|
+
@overload
|
2407
|
+
def __mod__(self, arg: int1, /) -> int1: ...
|
2408
|
+
|
2409
|
+
@overload
|
2410
|
+
def __mod__(self, arg: int, /) -> int1: ...
|
2411
|
+
|
2412
|
+
def __rmod__(self, arg: int, /) -> int1: ...
|
2413
|
+
|
2414
|
+
@overload
|
2415
|
+
def __lshift__(self, arg: int1, /) -> int1: ...
|
2416
|
+
|
2417
|
+
@overload
|
2418
|
+
def __lshift__(self, arg: int, /) -> int1: ...
|
2419
|
+
|
2420
|
+
def __rlshift__(self, arg: int, /) -> int1: ...
|
2421
|
+
|
2422
|
+
@overload
|
2423
|
+
def __rshift__(self, arg: int1, /) -> int1: ...
|
2424
|
+
|
2425
|
+
@overload
|
2426
|
+
def __rshift__(self, arg: int, /) -> int1: ...
|
2427
|
+
|
2428
|
+
def __rrshift__(self, arg: int, /) -> int1: ...
|
2429
|
+
|
2430
|
+
@overload
|
2431
|
+
def __or__(self, arg: int1, /) -> int1: ...
|
2432
|
+
|
2433
|
+
@overload
|
2434
|
+
def __or__(self, arg: int, /) -> int1: ...
|
2435
|
+
|
2436
|
+
def __ror__(self, arg: int, /) -> int1: ...
|
2437
|
+
|
2438
|
+
@overload
|
2439
|
+
def __and__(self, arg: int1, /) -> int1: ...
|
2440
|
+
|
2441
|
+
@overload
|
2442
|
+
def __and__(self, arg: int, /) -> int1: ...
|
2443
|
+
|
2444
|
+
def __rand__(self, arg: int, /) -> int1: ...
|
2445
|
+
|
2446
|
+
@overload
|
2447
|
+
def __xor__(self, arg: int1, /) -> int1: ...
|
2448
|
+
|
2449
|
+
@overload
|
2450
|
+
def __xor__(self, arg: int, /) -> int1: ...
|
2451
|
+
|
2452
|
+
def __rxor__(self, arg: int, /) -> int1: ...
|
2453
|
+
|
2454
|
+
@overload
|
2455
|
+
def __imod__(self, arg: int1, /) -> int1: ...
|
2456
|
+
|
2457
|
+
@overload
|
2458
|
+
def __imod__(self, arg: int, /) -> int1: ...
|
2459
|
+
|
2460
|
+
@overload
|
2461
|
+
def __ilshift__(self, arg: int1, /) -> int1: ...
|
2462
|
+
|
2463
|
+
@overload
|
2464
|
+
def __ilshift__(self, arg: int, /) -> int1: ...
|
2465
|
+
|
2466
|
+
@overload
|
2467
|
+
def __irshift__(self, arg: int1, /) -> int1: ...
|
2468
|
+
|
2469
|
+
@overload
|
2470
|
+
def __irshift__(self, arg: int, /) -> int1: ...
|
2471
|
+
|
2472
|
+
@overload
|
2473
|
+
def __ior__(self, arg: int1, /) -> int1: ...
|
2474
|
+
|
2475
|
+
@overload
|
2476
|
+
def __ior__(self, arg: int, /) -> int1: ...
|
2477
|
+
|
2478
|
+
@overload
|
2479
|
+
def __iand__(self, arg: int1, /) -> int1: ...
|
2480
|
+
|
2481
|
+
@overload
|
2482
|
+
def __iand__(self, arg: int, /) -> int1: ...
|
2483
|
+
|
2484
|
+
@overload
|
2485
|
+
def __ixor__(self, arg: int1, /) -> int1: ...
|
2486
|
+
|
2487
|
+
@overload
|
2488
|
+
def __ixor__(self, arg: int, /) -> int1: ...
|
2489
|
+
|
2490
|
+
@overload
|
2491
|
+
def __eq__(self, arg: int1, /) -> bool1: ...
|
2492
|
+
|
2493
|
+
@overload
|
2494
|
+
def __eq__(self, arg: int, /) -> bool1: ...
|
2495
|
+
|
2496
|
+
@overload
|
2497
|
+
def __eq__(self, arg: int, /) -> bool1: ...
|
2498
|
+
|
2499
|
+
@overload
|
2500
|
+
def __ne__(self, arg: int1, /) -> bool1: ...
|
2501
|
+
|
2502
|
+
@overload
|
2503
|
+
def __ne__(self, arg: int, /) -> bool1: ...
|
2504
|
+
|
2505
|
+
@overload
|
2506
|
+
def __ne__(self, arg: int, /) -> bool1: ...
|
2507
|
+
|
2508
|
+
@overload
|
2509
|
+
def __lt__(self, arg: int1, /) -> bool1: ...
|
2510
|
+
|
2511
|
+
@overload
|
2512
|
+
def __lt__(self, arg: int, /) -> bool1: ...
|
2513
|
+
|
2514
|
+
@overload
|
2515
|
+
def __lt__(self, arg: int, /) -> bool1: ...
|
2516
|
+
|
2517
|
+
@overload
|
2518
|
+
def __gt__(self, arg: int, /) -> bool1: ...
|
2519
|
+
|
2520
|
+
@overload
|
2521
|
+
def __gt__(self, arg: int1, /) -> bool1: ...
|
2522
|
+
|
2523
|
+
@overload
|
2524
|
+
def __gt__(self, arg: int, /) -> bool1: ...
|
2525
|
+
|
2526
|
+
@overload
|
2527
|
+
def __le__(self, arg: int1, /) -> bool1: ...
|
2528
|
+
|
2529
|
+
@overload
|
2530
|
+
def __le__(self, arg: int, /) -> bool1: ...
|
2531
|
+
|
2532
|
+
@overload
|
2533
|
+
def __le__(self, arg: int, /) -> bool1: ...
|
2534
|
+
|
2535
|
+
@overload
|
2536
|
+
def __ge__(self, arg: int, /) -> bool1: ...
|
2537
|
+
|
2538
|
+
@overload
|
2539
|
+
def __ge__(self, arg: int1, /) -> bool1: ...
|
2540
|
+
|
2541
|
+
@overload
|
2542
|
+
def __ge__(self, arg: int, /) -> bool1: ...
|
2543
|
+
|
2544
|
+
class int2:
|
2545
|
+
@overload
|
2546
|
+
def __init__(self) -> None: ...
|
2547
|
+
|
2548
|
+
@overload
|
2549
|
+
def __init__(self, scalar: int) -> None: ...
|
2550
|
+
|
2551
|
+
@overload
|
2552
|
+
def __init__(self, x: int, y: int) -> None: ...
|
2553
|
+
|
2554
|
+
@overload
|
2555
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
2556
|
+
|
2557
|
+
@property
|
2558
|
+
def x(self) -> int: ...
|
2559
|
+
|
2560
|
+
@x.setter
|
2561
|
+
def x(self, arg: int, /) -> None: ...
|
2562
|
+
|
2563
|
+
@property
|
2564
|
+
def y(self) -> int: ...
|
2565
|
+
|
2566
|
+
@y.setter
|
2567
|
+
def y(self, arg: int, /) -> None: ...
|
2568
|
+
|
2569
|
+
def __len__(self) -> int: ...
|
2570
|
+
|
2571
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
2572
|
+
|
2573
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
2574
|
+
|
2575
|
+
@property
|
2576
|
+
def shape(self) -> tuple: ...
|
2577
|
+
|
2578
|
+
@property
|
2579
|
+
def element_type(self) -> object: ...
|
2580
|
+
|
2581
|
+
def __repr__(self) -> str: ...
|
2582
|
+
|
2583
|
+
def __str__(self) -> str: ...
|
2584
|
+
|
2585
|
+
def __pos__(self) -> int2: ...
|
2586
|
+
|
2587
|
+
def __neg__(self) -> int2: ...
|
2588
|
+
|
2589
|
+
@overload
|
2590
|
+
def __add__(self, arg: int2, /) -> int2: ...
|
2591
|
+
|
2592
|
+
@overload
|
2593
|
+
def __add__(self, arg: int, /) -> int2: ...
|
2594
|
+
|
2595
|
+
def __radd__(self, arg: int, /) -> int2: ...
|
2596
|
+
|
2597
|
+
@overload
|
2598
|
+
def __sub__(self, arg: int2, /) -> int2: ...
|
2599
|
+
|
2600
|
+
@overload
|
2601
|
+
def __sub__(self, arg: int, /) -> int2: ...
|
2602
|
+
|
2603
|
+
def __rsub__(self, arg: int, /) -> int2: ...
|
2604
|
+
|
2605
|
+
@overload
|
2606
|
+
def __mul__(self, arg: int2, /) -> int2: ...
|
2607
|
+
|
2608
|
+
@overload
|
2609
|
+
def __mul__(self, arg: int, /) -> int2: ...
|
2610
|
+
|
2611
|
+
def __rmul__(self, arg: int, /) -> int2: ...
|
2612
|
+
|
2613
|
+
@overload
|
2614
|
+
def __truediv__(self, arg: int2, /) -> int2: ...
|
2615
|
+
|
2616
|
+
@overload
|
2617
|
+
def __truediv__(self, arg: int, /) -> int2: ...
|
2618
|
+
|
2619
|
+
def __rtruediv__(self, arg: int, /) -> int2: ...
|
2620
|
+
|
2621
|
+
@overload
|
2622
|
+
def __iadd__(self, arg: int2, /) -> int2: ...
|
2623
|
+
|
2624
|
+
@overload
|
2625
|
+
def __iadd__(self, arg: int, /) -> int2: ...
|
2626
|
+
|
2627
|
+
@overload
|
2628
|
+
def __isub__(self, arg: int2, /) -> int2: ...
|
2629
|
+
|
2630
|
+
@overload
|
2631
|
+
def __isub__(self, arg: int, /) -> int2: ...
|
2632
|
+
|
2633
|
+
@overload
|
2634
|
+
def __imul__(self, arg: int2, /) -> int2: ...
|
2635
|
+
|
2636
|
+
@overload
|
2637
|
+
def __imul__(self, arg: int, /) -> int2: ...
|
2638
|
+
|
2639
|
+
@overload
|
2640
|
+
def __itruediv__(self, arg: int2, /) -> int2: ...
|
2641
|
+
|
2642
|
+
@overload
|
2643
|
+
def __itruediv__(self, arg: int, /) -> int2: ...
|
2644
|
+
|
2645
|
+
@overload
|
2646
|
+
def __mod__(self, arg: int2, /) -> int2: ...
|
2647
|
+
|
2648
|
+
@overload
|
2649
|
+
def __mod__(self, arg: int, /) -> int2: ...
|
2650
|
+
|
2651
|
+
def __rmod__(self, arg: int, /) -> int2: ...
|
2652
|
+
|
2653
|
+
@overload
|
2654
|
+
def __lshift__(self, arg: int2, /) -> int2: ...
|
2655
|
+
|
2656
|
+
@overload
|
2657
|
+
def __lshift__(self, arg: int, /) -> int2: ...
|
2658
|
+
|
2659
|
+
def __rlshift__(self, arg: int, /) -> int2: ...
|
2660
|
+
|
2661
|
+
@overload
|
2662
|
+
def __rshift__(self, arg: int2, /) -> int2: ...
|
2663
|
+
|
2664
|
+
@overload
|
2665
|
+
def __rshift__(self, arg: int, /) -> int2: ...
|
2666
|
+
|
2667
|
+
def __rrshift__(self, arg: int, /) -> int2: ...
|
2668
|
+
|
2669
|
+
@overload
|
2670
|
+
def __or__(self, arg: int2, /) -> int2: ...
|
2671
|
+
|
2672
|
+
@overload
|
2673
|
+
def __or__(self, arg: int, /) -> int2: ...
|
2674
|
+
|
2675
|
+
def __ror__(self, arg: int, /) -> int2: ...
|
2676
|
+
|
2677
|
+
@overload
|
2678
|
+
def __and__(self, arg: int2, /) -> int2: ...
|
2679
|
+
|
2680
|
+
@overload
|
2681
|
+
def __and__(self, arg: int, /) -> int2: ...
|
2682
|
+
|
2683
|
+
def __rand__(self, arg: int, /) -> int2: ...
|
2684
|
+
|
2685
|
+
@overload
|
2686
|
+
def __xor__(self, arg: int2, /) -> int2: ...
|
2687
|
+
|
2688
|
+
@overload
|
2689
|
+
def __xor__(self, arg: int, /) -> int2: ...
|
2690
|
+
|
2691
|
+
def __rxor__(self, arg: int, /) -> int2: ...
|
2692
|
+
|
2693
|
+
@overload
|
2694
|
+
def __imod__(self, arg: int2, /) -> int2: ...
|
2695
|
+
|
2696
|
+
@overload
|
2697
|
+
def __imod__(self, arg: int, /) -> int2: ...
|
2698
|
+
|
2699
|
+
@overload
|
2700
|
+
def __ilshift__(self, arg: int2, /) -> int2: ...
|
2701
|
+
|
2702
|
+
@overload
|
2703
|
+
def __ilshift__(self, arg: int, /) -> int2: ...
|
2704
|
+
|
2705
|
+
@overload
|
2706
|
+
def __irshift__(self, arg: int2, /) -> int2: ...
|
2707
|
+
|
2708
|
+
@overload
|
2709
|
+
def __irshift__(self, arg: int, /) -> int2: ...
|
2710
|
+
|
2711
|
+
@overload
|
2712
|
+
def __ior__(self, arg: int2, /) -> int2: ...
|
2713
|
+
|
2714
|
+
@overload
|
2715
|
+
def __ior__(self, arg: int, /) -> int2: ...
|
2716
|
+
|
2717
|
+
@overload
|
2718
|
+
def __iand__(self, arg: int2, /) -> int2: ...
|
2719
|
+
|
2720
|
+
@overload
|
2721
|
+
def __iand__(self, arg: int, /) -> int2: ...
|
2722
|
+
|
2723
|
+
@overload
|
2724
|
+
def __ixor__(self, arg: int2, /) -> int2: ...
|
2725
|
+
|
2726
|
+
@overload
|
2727
|
+
def __ixor__(self, arg: int, /) -> int2: ...
|
2728
|
+
|
2729
|
+
@overload
|
2730
|
+
def __eq__(self, arg: int2, /) -> bool2: ...
|
2731
|
+
|
2732
|
+
@overload
|
2733
|
+
def __eq__(self, arg: int, /) -> bool2: ...
|
2734
|
+
|
2735
|
+
@overload
|
2736
|
+
def __eq__(self, arg: int, /) -> bool2: ...
|
2737
|
+
|
2738
|
+
@overload
|
2739
|
+
def __ne__(self, arg: int2, /) -> bool2: ...
|
2740
|
+
|
2741
|
+
@overload
|
2742
|
+
def __ne__(self, arg: int, /) -> bool2: ...
|
2743
|
+
|
2744
|
+
@overload
|
2745
|
+
def __ne__(self, arg: int, /) -> bool2: ...
|
2746
|
+
|
2747
|
+
@overload
|
2748
|
+
def __lt__(self, arg: int2, /) -> bool2: ...
|
2749
|
+
|
2750
|
+
@overload
|
2751
|
+
def __lt__(self, arg: int, /) -> bool2: ...
|
2752
|
+
|
2753
|
+
@overload
|
2754
|
+
def __lt__(self, arg: int, /) -> bool2: ...
|
2755
|
+
|
2756
|
+
@overload
|
2757
|
+
def __gt__(self, arg: int, /) -> bool2: ...
|
2758
|
+
|
2759
|
+
@overload
|
2760
|
+
def __gt__(self, arg: int2, /) -> bool2: ...
|
2761
|
+
|
2762
|
+
@overload
|
2763
|
+
def __gt__(self, arg: int, /) -> bool2: ...
|
2764
|
+
|
2765
|
+
@overload
|
2766
|
+
def __le__(self, arg: int2, /) -> bool2: ...
|
2767
|
+
|
2768
|
+
@overload
|
2769
|
+
def __le__(self, arg: int, /) -> bool2: ...
|
2770
|
+
|
2771
|
+
@overload
|
2772
|
+
def __le__(self, arg: int, /) -> bool2: ...
|
2773
|
+
|
2774
|
+
@overload
|
2775
|
+
def __ge__(self, arg: int, /) -> bool2: ...
|
2776
|
+
|
2777
|
+
@overload
|
2778
|
+
def __ge__(self, arg: int2, /) -> bool2: ...
|
2779
|
+
|
2780
|
+
@overload
|
2781
|
+
def __ge__(self, arg: int, /) -> bool2: ...
|
2782
|
+
|
2783
|
+
class int3:
|
2784
|
+
@overload
|
2785
|
+
def __init__(self) -> None: ...
|
2786
|
+
|
2787
|
+
@overload
|
2788
|
+
def __init__(self, scalar: int) -> None: ...
|
2789
|
+
|
2790
|
+
@overload
|
2791
|
+
def __init__(self, x: int, y: int, z: int) -> None: ...
|
2792
|
+
|
2793
|
+
@overload
|
2794
|
+
def __init__(self, xy: int2, z: int) -> None: ...
|
2795
|
+
|
2796
|
+
@overload
|
2797
|
+
def __init__(self, x: int, yz: int2) -> None: ...
|
2798
|
+
|
2799
|
+
@overload
|
2800
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
2801
|
+
|
2802
|
+
@property
|
2803
|
+
def x(self) -> int: ...
|
2804
|
+
|
2805
|
+
@x.setter
|
2806
|
+
def x(self, arg: int, /) -> None: ...
|
2807
|
+
|
2808
|
+
@property
|
2809
|
+
def y(self) -> int: ...
|
2810
|
+
|
2811
|
+
@y.setter
|
2812
|
+
def y(self, arg: int, /) -> None: ...
|
2813
|
+
|
2814
|
+
@property
|
2815
|
+
def z(self) -> int: ...
|
2816
|
+
|
2817
|
+
@z.setter
|
2818
|
+
def z(self, arg: int, /) -> None: ...
|
2819
|
+
|
2820
|
+
def __len__(self) -> int: ...
|
2821
|
+
|
2822
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
2823
|
+
|
2824
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
2825
|
+
|
2826
|
+
@property
|
2827
|
+
def shape(self) -> tuple: ...
|
2828
|
+
|
2829
|
+
@property
|
2830
|
+
def element_type(self) -> object: ...
|
2831
|
+
|
2832
|
+
def __repr__(self) -> str: ...
|
2833
|
+
|
2834
|
+
def __str__(self) -> str: ...
|
2835
|
+
|
2836
|
+
def __pos__(self) -> int3: ...
|
2837
|
+
|
2838
|
+
def __neg__(self) -> int3: ...
|
2839
|
+
|
2840
|
+
@overload
|
2841
|
+
def __add__(self, arg: int3, /) -> int3: ...
|
2842
|
+
|
2843
|
+
@overload
|
2844
|
+
def __add__(self, arg: int, /) -> int3: ...
|
2845
|
+
|
2846
|
+
def __radd__(self, arg: int, /) -> int3: ...
|
2847
|
+
|
2848
|
+
@overload
|
2849
|
+
def __sub__(self, arg: int3, /) -> int3: ...
|
2850
|
+
|
2851
|
+
@overload
|
2852
|
+
def __sub__(self, arg: int, /) -> int3: ...
|
2853
|
+
|
2854
|
+
def __rsub__(self, arg: int, /) -> int3: ...
|
2855
|
+
|
2856
|
+
@overload
|
2857
|
+
def __mul__(self, arg: int3, /) -> int3: ...
|
2858
|
+
|
2859
|
+
@overload
|
2860
|
+
def __mul__(self, arg: int, /) -> int3: ...
|
2861
|
+
|
2862
|
+
def __rmul__(self, arg: int, /) -> int3: ...
|
2863
|
+
|
2864
|
+
@overload
|
2865
|
+
def __truediv__(self, arg: int3, /) -> int3: ...
|
2866
|
+
|
2867
|
+
@overload
|
2868
|
+
def __truediv__(self, arg: int, /) -> int3: ...
|
2869
|
+
|
2870
|
+
def __rtruediv__(self, arg: int, /) -> int3: ...
|
2871
|
+
|
2872
|
+
@overload
|
2873
|
+
def __iadd__(self, arg: int3, /) -> int3: ...
|
2874
|
+
|
2875
|
+
@overload
|
2876
|
+
def __iadd__(self, arg: int, /) -> int3: ...
|
2877
|
+
|
2878
|
+
@overload
|
2879
|
+
def __isub__(self, arg: int3, /) -> int3: ...
|
2880
|
+
|
2881
|
+
@overload
|
2882
|
+
def __isub__(self, arg: int, /) -> int3: ...
|
2883
|
+
|
2884
|
+
@overload
|
2885
|
+
def __imul__(self, arg: int3, /) -> int3: ...
|
2886
|
+
|
2887
|
+
@overload
|
2888
|
+
def __imul__(self, arg: int, /) -> int3: ...
|
2889
|
+
|
2890
|
+
@overload
|
2891
|
+
def __itruediv__(self, arg: int3, /) -> int3: ...
|
2892
|
+
|
2893
|
+
@overload
|
2894
|
+
def __itruediv__(self, arg: int, /) -> int3: ...
|
2895
|
+
|
2896
|
+
@overload
|
2897
|
+
def __mod__(self, arg: int3, /) -> int3: ...
|
2898
|
+
|
2899
|
+
@overload
|
2900
|
+
def __mod__(self, arg: int, /) -> int3: ...
|
2901
|
+
|
2902
|
+
def __rmod__(self, arg: int, /) -> int3: ...
|
2903
|
+
|
2904
|
+
@overload
|
2905
|
+
def __lshift__(self, arg: int3, /) -> int3: ...
|
2906
|
+
|
2907
|
+
@overload
|
2908
|
+
def __lshift__(self, arg: int, /) -> int3: ...
|
2909
|
+
|
2910
|
+
def __rlshift__(self, arg: int, /) -> int3: ...
|
2911
|
+
|
2912
|
+
@overload
|
2913
|
+
def __rshift__(self, arg: int3, /) -> int3: ...
|
2914
|
+
|
2915
|
+
@overload
|
2916
|
+
def __rshift__(self, arg: int, /) -> int3: ...
|
2917
|
+
|
2918
|
+
def __rrshift__(self, arg: int, /) -> int3: ...
|
2919
|
+
|
2920
|
+
@overload
|
2921
|
+
def __or__(self, arg: int3, /) -> int3: ...
|
2922
|
+
|
2923
|
+
@overload
|
2924
|
+
def __or__(self, arg: int, /) -> int3: ...
|
2925
|
+
|
2926
|
+
def __ror__(self, arg: int, /) -> int3: ...
|
2927
|
+
|
2928
|
+
@overload
|
2929
|
+
def __and__(self, arg: int3, /) -> int3: ...
|
2930
|
+
|
2931
|
+
@overload
|
2932
|
+
def __and__(self, arg: int, /) -> int3: ...
|
2933
|
+
|
2934
|
+
def __rand__(self, arg: int, /) -> int3: ...
|
2935
|
+
|
2936
|
+
@overload
|
2937
|
+
def __xor__(self, arg: int3, /) -> int3: ...
|
2938
|
+
|
2939
|
+
@overload
|
2940
|
+
def __xor__(self, arg: int, /) -> int3: ...
|
2941
|
+
|
2942
|
+
def __rxor__(self, arg: int, /) -> int3: ...
|
2943
|
+
|
2944
|
+
@overload
|
2945
|
+
def __imod__(self, arg: int3, /) -> int3: ...
|
2946
|
+
|
2947
|
+
@overload
|
2948
|
+
def __imod__(self, arg: int, /) -> int3: ...
|
2949
|
+
|
2950
|
+
@overload
|
2951
|
+
def __ilshift__(self, arg: int3, /) -> int3: ...
|
2952
|
+
|
2953
|
+
@overload
|
2954
|
+
def __ilshift__(self, arg: int, /) -> int3: ...
|
2955
|
+
|
2956
|
+
@overload
|
2957
|
+
def __irshift__(self, arg: int3, /) -> int3: ...
|
2958
|
+
|
2959
|
+
@overload
|
2960
|
+
def __irshift__(self, arg: int, /) -> int3: ...
|
2961
|
+
|
2962
|
+
@overload
|
2963
|
+
def __ior__(self, arg: int3, /) -> int3: ...
|
2964
|
+
|
2965
|
+
@overload
|
2966
|
+
def __ior__(self, arg: int, /) -> int3: ...
|
2967
|
+
|
2968
|
+
@overload
|
2969
|
+
def __iand__(self, arg: int3, /) -> int3: ...
|
2970
|
+
|
2971
|
+
@overload
|
2972
|
+
def __iand__(self, arg: int, /) -> int3: ...
|
2973
|
+
|
2974
|
+
@overload
|
2975
|
+
def __ixor__(self, arg: int3, /) -> int3: ...
|
2976
|
+
|
2977
|
+
@overload
|
2978
|
+
def __ixor__(self, arg: int, /) -> int3: ...
|
2979
|
+
|
2980
|
+
@overload
|
2981
|
+
def __eq__(self, arg: int3, /) -> bool3: ...
|
2982
|
+
|
2983
|
+
@overload
|
2984
|
+
def __eq__(self, arg: int, /) -> bool3: ...
|
2985
|
+
|
2986
|
+
@overload
|
2987
|
+
def __eq__(self, arg: int, /) -> bool3: ...
|
2988
|
+
|
2989
|
+
@overload
|
2990
|
+
def __ne__(self, arg: int3, /) -> bool3: ...
|
2991
|
+
|
2992
|
+
@overload
|
2993
|
+
def __ne__(self, arg: int, /) -> bool3: ...
|
2994
|
+
|
2995
|
+
@overload
|
2996
|
+
def __ne__(self, arg: int, /) -> bool3: ...
|
2997
|
+
|
2998
|
+
@overload
|
2999
|
+
def __lt__(self, arg: int3, /) -> bool3: ...
|
3000
|
+
|
3001
|
+
@overload
|
3002
|
+
def __lt__(self, arg: int, /) -> bool3: ...
|
3003
|
+
|
3004
|
+
@overload
|
3005
|
+
def __lt__(self, arg: int, /) -> bool3: ...
|
3006
|
+
|
3007
|
+
@overload
|
3008
|
+
def __gt__(self, arg: int, /) -> bool3: ...
|
3009
|
+
|
3010
|
+
@overload
|
3011
|
+
def __gt__(self, arg: int3, /) -> bool3: ...
|
3012
|
+
|
3013
|
+
@overload
|
3014
|
+
def __gt__(self, arg: int, /) -> bool3: ...
|
3015
|
+
|
3016
|
+
@overload
|
3017
|
+
def __le__(self, arg: int3, /) -> bool3: ...
|
3018
|
+
|
3019
|
+
@overload
|
3020
|
+
def __le__(self, arg: int, /) -> bool3: ...
|
3021
|
+
|
3022
|
+
@overload
|
3023
|
+
def __le__(self, arg: int, /) -> bool3: ...
|
3024
|
+
|
3025
|
+
@overload
|
3026
|
+
def __ge__(self, arg: int, /) -> bool3: ...
|
3027
|
+
|
3028
|
+
@overload
|
3029
|
+
def __ge__(self, arg: int3, /) -> bool3: ...
|
3030
|
+
|
3031
|
+
@overload
|
3032
|
+
def __ge__(self, arg: int, /) -> bool3: ...
|
3033
|
+
|
3034
|
+
class int4:
|
3035
|
+
@overload
|
3036
|
+
def __init__(self) -> None: ...
|
3037
|
+
|
3038
|
+
@overload
|
3039
|
+
def __init__(self, scalar: int) -> None: ...
|
3040
|
+
|
3041
|
+
@overload
|
3042
|
+
def __init__(self, x: int, y: int, z: int, w: int) -> None: ...
|
3043
|
+
|
3044
|
+
@overload
|
3045
|
+
def __init__(self, xy: int2, zw: int2) -> None: ...
|
3046
|
+
|
3047
|
+
@overload
|
3048
|
+
def __init__(self, xyz: int3, w: int) -> None: ...
|
3049
|
+
|
3050
|
+
@overload
|
3051
|
+
def __init__(self, x: int, yzw: int3) -> None: ...
|
3052
|
+
|
3053
|
+
@overload
|
3054
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
3055
|
+
|
3056
|
+
@property
|
3057
|
+
def x(self) -> int: ...
|
3058
|
+
|
3059
|
+
@x.setter
|
3060
|
+
def x(self, arg: int, /) -> None: ...
|
3061
|
+
|
3062
|
+
@property
|
3063
|
+
def y(self) -> int: ...
|
3064
|
+
|
3065
|
+
@y.setter
|
3066
|
+
def y(self, arg: int, /) -> None: ...
|
3067
|
+
|
3068
|
+
@property
|
3069
|
+
def z(self) -> int: ...
|
3070
|
+
|
3071
|
+
@z.setter
|
3072
|
+
def z(self, arg: int, /) -> None: ...
|
3073
|
+
|
3074
|
+
@property
|
3075
|
+
def w(self) -> int: ...
|
3076
|
+
|
3077
|
+
@w.setter
|
3078
|
+
def w(self, arg: int, /) -> None: ...
|
3079
|
+
|
3080
|
+
def __len__(self) -> int: ...
|
3081
|
+
|
3082
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
3083
|
+
|
3084
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
3085
|
+
|
3086
|
+
@property
|
3087
|
+
def shape(self) -> tuple: ...
|
3088
|
+
|
3089
|
+
@property
|
3090
|
+
def element_type(self) -> object: ...
|
3091
|
+
|
3092
|
+
def __repr__(self) -> str: ...
|
3093
|
+
|
3094
|
+
def __str__(self) -> str: ...
|
3095
|
+
|
3096
|
+
def __pos__(self) -> int4: ...
|
3097
|
+
|
3098
|
+
def __neg__(self) -> int4: ...
|
3099
|
+
|
3100
|
+
@overload
|
3101
|
+
def __add__(self, arg: int4, /) -> int4: ...
|
3102
|
+
|
3103
|
+
@overload
|
3104
|
+
def __add__(self, arg: int, /) -> int4: ...
|
3105
|
+
|
3106
|
+
def __radd__(self, arg: int, /) -> int4: ...
|
3107
|
+
|
3108
|
+
@overload
|
3109
|
+
def __sub__(self, arg: int4, /) -> int4: ...
|
3110
|
+
|
3111
|
+
@overload
|
3112
|
+
def __sub__(self, arg: int, /) -> int4: ...
|
3113
|
+
|
3114
|
+
def __rsub__(self, arg: int, /) -> int4: ...
|
3115
|
+
|
3116
|
+
@overload
|
3117
|
+
def __mul__(self, arg: int4, /) -> int4: ...
|
3118
|
+
|
3119
|
+
@overload
|
3120
|
+
def __mul__(self, arg: int, /) -> int4: ...
|
3121
|
+
|
3122
|
+
def __rmul__(self, arg: int, /) -> int4: ...
|
3123
|
+
|
3124
|
+
@overload
|
3125
|
+
def __truediv__(self, arg: int4, /) -> int4: ...
|
3126
|
+
|
3127
|
+
@overload
|
3128
|
+
def __truediv__(self, arg: int, /) -> int4: ...
|
3129
|
+
|
3130
|
+
def __rtruediv__(self, arg: int, /) -> int4: ...
|
3131
|
+
|
3132
|
+
@overload
|
3133
|
+
def __iadd__(self, arg: int4, /) -> int4: ...
|
3134
|
+
|
3135
|
+
@overload
|
3136
|
+
def __iadd__(self, arg: int, /) -> int4: ...
|
3137
|
+
|
3138
|
+
@overload
|
3139
|
+
def __isub__(self, arg: int4, /) -> int4: ...
|
3140
|
+
|
3141
|
+
@overload
|
3142
|
+
def __isub__(self, arg: int, /) -> int4: ...
|
3143
|
+
|
3144
|
+
@overload
|
3145
|
+
def __imul__(self, arg: int4, /) -> int4: ...
|
3146
|
+
|
3147
|
+
@overload
|
3148
|
+
def __imul__(self, arg: int, /) -> int4: ...
|
3149
|
+
|
3150
|
+
@overload
|
3151
|
+
def __itruediv__(self, arg: int4, /) -> int4: ...
|
3152
|
+
|
3153
|
+
@overload
|
3154
|
+
def __itruediv__(self, arg: int, /) -> int4: ...
|
3155
|
+
|
3156
|
+
@overload
|
3157
|
+
def __mod__(self, arg: int4, /) -> int4: ...
|
3158
|
+
|
3159
|
+
@overload
|
3160
|
+
def __mod__(self, arg: int, /) -> int4: ...
|
3161
|
+
|
3162
|
+
def __rmod__(self, arg: int, /) -> int4: ...
|
3163
|
+
|
3164
|
+
@overload
|
3165
|
+
def __lshift__(self, arg: int4, /) -> int4: ...
|
3166
|
+
|
3167
|
+
@overload
|
3168
|
+
def __lshift__(self, arg: int, /) -> int4: ...
|
3169
|
+
|
3170
|
+
def __rlshift__(self, arg: int, /) -> int4: ...
|
3171
|
+
|
3172
|
+
@overload
|
3173
|
+
def __rshift__(self, arg: int4, /) -> int4: ...
|
3174
|
+
|
3175
|
+
@overload
|
3176
|
+
def __rshift__(self, arg: int, /) -> int4: ...
|
3177
|
+
|
3178
|
+
def __rrshift__(self, arg: int, /) -> int4: ...
|
3179
|
+
|
3180
|
+
@overload
|
3181
|
+
def __or__(self, arg: int4, /) -> int4: ...
|
3182
|
+
|
3183
|
+
@overload
|
3184
|
+
def __or__(self, arg: int, /) -> int4: ...
|
3185
|
+
|
3186
|
+
def __ror__(self, arg: int, /) -> int4: ...
|
3187
|
+
|
3188
|
+
@overload
|
3189
|
+
def __and__(self, arg: int4, /) -> int4: ...
|
3190
|
+
|
3191
|
+
@overload
|
3192
|
+
def __and__(self, arg: int, /) -> int4: ...
|
3193
|
+
|
3194
|
+
def __rand__(self, arg: int, /) -> int4: ...
|
3195
|
+
|
3196
|
+
@overload
|
3197
|
+
def __xor__(self, arg: int4, /) -> int4: ...
|
3198
|
+
|
3199
|
+
@overload
|
3200
|
+
def __xor__(self, arg: int, /) -> int4: ...
|
3201
|
+
|
3202
|
+
def __rxor__(self, arg: int, /) -> int4: ...
|
3203
|
+
|
3204
|
+
@overload
|
3205
|
+
def __imod__(self, arg: int4, /) -> int4: ...
|
3206
|
+
|
3207
|
+
@overload
|
3208
|
+
def __imod__(self, arg: int, /) -> int4: ...
|
3209
|
+
|
3210
|
+
@overload
|
3211
|
+
def __ilshift__(self, arg: int4, /) -> int4: ...
|
3212
|
+
|
3213
|
+
@overload
|
3214
|
+
def __ilshift__(self, arg: int, /) -> int4: ...
|
3215
|
+
|
3216
|
+
@overload
|
3217
|
+
def __irshift__(self, arg: int4, /) -> int4: ...
|
3218
|
+
|
3219
|
+
@overload
|
3220
|
+
def __irshift__(self, arg: int, /) -> int4: ...
|
3221
|
+
|
3222
|
+
@overload
|
3223
|
+
def __ior__(self, arg: int4, /) -> int4: ...
|
3224
|
+
|
3225
|
+
@overload
|
3226
|
+
def __ior__(self, arg: int, /) -> int4: ...
|
3227
|
+
|
3228
|
+
@overload
|
3229
|
+
def __iand__(self, arg: int4, /) -> int4: ...
|
3230
|
+
|
3231
|
+
@overload
|
3232
|
+
def __iand__(self, arg: int, /) -> int4: ...
|
3233
|
+
|
3234
|
+
@overload
|
3235
|
+
def __ixor__(self, arg: int4, /) -> int4: ...
|
3236
|
+
|
3237
|
+
@overload
|
3238
|
+
def __ixor__(self, arg: int, /) -> int4: ...
|
3239
|
+
|
3240
|
+
@overload
|
3241
|
+
def __eq__(self, arg: int4, /) -> bool4: ...
|
3242
|
+
|
3243
|
+
@overload
|
3244
|
+
def __eq__(self, arg: int, /) -> bool4: ...
|
3245
|
+
|
3246
|
+
@overload
|
3247
|
+
def __eq__(self, arg: int, /) -> bool4: ...
|
3248
|
+
|
3249
|
+
@overload
|
3250
|
+
def __ne__(self, arg: int4, /) -> bool4: ...
|
3251
|
+
|
3252
|
+
@overload
|
3253
|
+
def __ne__(self, arg: int, /) -> bool4: ...
|
3254
|
+
|
3255
|
+
@overload
|
3256
|
+
def __ne__(self, arg: int, /) -> bool4: ...
|
3257
|
+
|
3258
|
+
@overload
|
3259
|
+
def __lt__(self, arg: int4, /) -> bool4: ...
|
3260
|
+
|
3261
|
+
@overload
|
3262
|
+
def __lt__(self, arg: int, /) -> bool4: ...
|
3263
|
+
|
3264
|
+
@overload
|
3265
|
+
def __lt__(self, arg: int, /) -> bool4: ...
|
3266
|
+
|
3267
|
+
@overload
|
3268
|
+
def __gt__(self, arg: int, /) -> bool4: ...
|
3269
|
+
|
3270
|
+
@overload
|
3271
|
+
def __gt__(self, arg: int4, /) -> bool4: ...
|
3272
|
+
|
3273
|
+
@overload
|
3274
|
+
def __gt__(self, arg: int, /) -> bool4: ...
|
3275
|
+
|
3276
|
+
@overload
|
3277
|
+
def __le__(self, arg: int4, /) -> bool4: ...
|
3278
|
+
|
3279
|
+
@overload
|
3280
|
+
def __le__(self, arg: int, /) -> bool4: ...
|
3281
|
+
|
3282
|
+
@overload
|
3283
|
+
def __le__(self, arg: int, /) -> bool4: ...
|
3284
|
+
|
3285
|
+
@overload
|
3286
|
+
def __ge__(self, arg: int, /) -> bool4: ...
|
3287
|
+
|
3288
|
+
@overload
|
3289
|
+
def __ge__(self, arg: int4, /) -> bool4: ...
|
3290
|
+
|
3291
|
+
@overload
|
3292
|
+
def __ge__(self, arg: int, /) -> bool4: ...
|
3293
|
+
|
3294
|
+
@overload
|
3295
|
+
def inverse(x: float2x2) -> float2x2: ...
|
3296
|
+
|
3297
|
+
@overload
|
3298
|
+
def inverse(x: float3x3) -> float3x3: ...
|
3299
|
+
|
3300
|
+
@overload
|
3301
|
+
def inverse(x: float4x4) -> float4x4: ...
|
3302
|
+
|
3303
|
+
@overload
|
3304
|
+
def inverse(x: quatf) -> quatf: ...
|
3305
|
+
|
3306
|
+
@overload
|
3307
|
+
def isfinite(x: float) -> bool: ...
|
3308
|
+
|
3309
|
+
@overload
|
3310
|
+
def isfinite(x: float) -> bool: ...
|
3311
|
+
|
3312
|
+
@overload
|
3313
|
+
def isfinite(x: float16_t) -> bool: ...
|
3314
|
+
|
3315
|
+
@overload
|
3316
|
+
def isfinite(x: float1) -> bool1: ...
|
3317
|
+
|
3318
|
+
@overload
|
3319
|
+
def isfinite(x: float2) -> bool2: ...
|
3320
|
+
|
3321
|
+
@overload
|
3322
|
+
def isfinite(x: float3) -> bool3: ...
|
3323
|
+
|
3324
|
+
@overload
|
3325
|
+
def isfinite(x: float4) -> bool4: ...
|
3326
|
+
|
3327
|
+
@overload
|
3328
|
+
def isfinite(x: quatf) -> bool4: ...
|
3329
|
+
|
3330
|
+
@overload
|
3331
|
+
def isinf(x: float) -> bool: ...
|
3332
|
+
|
3333
|
+
@overload
|
3334
|
+
def isinf(x: float) -> bool: ...
|
3335
|
+
|
3336
|
+
@overload
|
3337
|
+
def isinf(x: float16_t) -> bool: ...
|
3338
|
+
|
3339
|
+
@overload
|
3340
|
+
def isinf(x: float1) -> bool1: ...
|
3341
|
+
|
3342
|
+
@overload
|
3343
|
+
def isinf(x: float2) -> bool2: ...
|
3344
|
+
|
3345
|
+
@overload
|
3346
|
+
def isinf(x: float3) -> bool3: ...
|
3347
|
+
|
3348
|
+
@overload
|
3349
|
+
def isinf(x: float4) -> bool4: ...
|
3350
|
+
|
3351
|
+
@overload
|
3352
|
+
def isinf(x: quatf) -> bool4: ...
|
3353
|
+
|
3354
|
+
@overload
|
3355
|
+
def isnan(x: float) -> bool: ...
|
3356
|
+
|
3357
|
+
@overload
|
3358
|
+
def isnan(x: float) -> bool: ...
|
3359
|
+
|
3360
|
+
@overload
|
3361
|
+
def isnan(x: float16_t) -> bool: ...
|
3362
|
+
|
3363
|
+
@overload
|
3364
|
+
def isnan(x: float1) -> bool1: ...
|
3365
|
+
|
3366
|
+
@overload
|
3367
|
+
def isnan(x: float2) -> bool2: ...
|
3368
|
+
|
3369
|
+
@overload
|
3370
|
+
def isnan(x: float3) -> bool3: ...
|
3371
|
+
|
3372
|
+
@overload
|
3373
|
+
def isnan(x: float4) -> bool4: ...
|
3374
|
+
|
3375
|
+
@overload
|
3376
|
+
def isnan(x: quatf) -> bool4: ...
|
3377
|
+
|
3378
|
+
@overload
|
3379
|
+
def length(x: float1) -> float: ...
|
3380
|
+
|
3381
|
+
@overload
|
3382
|
+
def length(x: float2) -> float: ...
|
3383
|
+
|
3384
|
+
@overload
|
3385
|
+
def length(x: float3) -> float: ...
|
3386
|
+
|
3387
|
+
@overload
|
3388
|
+
def length(x: float4) -> float: ...
|
3389
|
+
|
3390
|
+
@overload
|
3391
|
+
def length(x: quatf) -> float: ...
|
3392
|
+
|
3393
|
+
@overload
|
3394
|
+
def lerp(x: float, y: float, s: float) -> float: ...
|
3395
|
+
|
3396
|
+
@overload
|
3397
|
+
def lerp(x: float, y: float, s: float) -> float: ...
|
3398
|
+
|
3399
|
+
@overload
|
3400
|
+
def lerp(x: float1, y: float1, s: float1) -> float1: ...
|
3401
|
+
|
3402
|
+
@overload
|
3403
|
+
def lerp(x: float1, y: float1, s: float) -> float1: ...
|
3404
|
+
|
3405
|
+
@overload
|
3406
|
+
def lerp(x: float2, y: float2, s: float2) -> float2: ...
|
3407
|
+
|
3408
|
+
@overload
|
3409
|
+
def lerp(x: float2, y: float2, s: float) -> float2: ...
|
3410
|
+
|
3411
|
+
@overload
|
3412
|
+
def lerp(x: float3, y: float3, s: float3) -> float3: ...
|
3413
|
+
|
3414
|
+
@overload
|
3415
|
+
def lerp(x: float3, y: float3, s: float) -> float3: ...
|
3416
|
+
|
3417
|
+
@overload
|
3418
|
+
def lerp(x: float4, y: float4, s: float4) -> float4: ...
|
3419
|
+
|
3420
|
+
@overload
|
3421
|
+
def lerp(x: float4, y: float4, s: float) -> float4: ...
|
3422
|
+
|
3423
|
+
@overload
|
3424
|
+
def lerp(x: quatf, y: quatf, s: float) -> quatf: ...
|
3425
|
+
|
3426
|
+
@overload
|
3427
|
+
def log(x: float) -> float: ...
|
3428
|
+
|
3429
|
+
@overload
|
3430
|
+
def log(x: float) -> float: ...
|
3431
|
+
|
3432
|
+
@overload
|
3433
|
+
def log(x: float16_t) -> float16_t: ...
|
3434
|
+
|
3435
|
+
@overload
|
3436
|
+
def log(x: float1) -> float1: ...
|
3437
|
+
|
3438
|
+
@overload
|
3439
|
+
def log(x: float2) -> float2: ...
|
3440
|
+
|
3441
|
+
@overload
|
3442
|
+
def log(x: float3) -> float3: ...
|
3443
|
+
|
3444
|
+
@overload
|
3445
|
+
def log(x: float4) -> float4: ...
|
3446
|
+
|
3447
|
+
@overload
|
3448
|
+
def log10(x: float) -> float: ...
|
3449
|
+
|
3450
|
+
@overload
|
3451
|
+
def log10(x: float) -> float: ...
|
3452
|
+
|
3453
|
+
@overload
|
3454
|
+
def log10(x: float1) -> float1: ...
|
3455
|
+
|
3456
|
+
@overload
|
3457
|
+
def log10(x: float2) -> float2: ...
|
3458
|
+
|
3459
|
+
@overload
|
3460
|
+
def log10(x: float3) -> float3: ...
|
3461
|
+
|
3462
|
+
@overload
|
3463
|
+
def log10(x: float4) -> float4: ...
|
3464
|
+
|
3465
|
+
@overload
|
3466
|
+
def log2(x: float) -> float: ...
|
3467
|
+
|
3468
|
+
@overload
|
3469
|
+
def log2(x: float) -> float: ...
|
3470
|
+
|
3471
|
+
@overload
|
3472
|
+
def log2(x: float1) -> float1: ...
|
3473
|
+
|
3474
|
+
@overload
|
3475
|
+
def log2(x: float2) -> float2: ...
|
3476
|
+
|
3477
|
+
@overload
|
3478
|
+
def log2(x: float3) -> float3: ...
|
3479
|
+
|
3480
|
+
@overload
|
3481
|
+
def log2(x: float4) -> float4: ...
|
3482
|
+
|
3483
|
+
def matrix_from_look_at(eye: float3, center: float3, up: float3, handedness: Handedness = Handedness.right_handed) -> float4x4: ...
|
3484
|
+
|
3485
|
+
def matrix_from_quat(q: quatf) -> float3x3: ...
|
3486
|
+
|
3487
|
+
def matrix_from_rotation(angle: float, axis: float3) -> float4x4: ...
|
3488
|
+
|
3489
|
+
def matrix_from_rotation_x(angle: float) -> float4x4: ...
|
3490
|
+
|
3491
|
+
@overload
|
3492
|
+
def matrix_from_rotation_xyz(angle_x: float, angle_y: float, angle_z: float) -> float4x4: ...
|
3493
|
+
|
3494
|
+
@overload
|
3495
|
+
def matrix_from_rotation_xyz(angles: float3) -> float4x4: ...
|
3496
|
+
|
3497
|
+
def matrix_from_rotation_y(angle: float) -> float4x4: ...
|
3498
|
+
|
3499
|
+
def matrix_from_rotation_z(angle: float) -> float4x4: ...
|
3500
|
+
|
3501
|
+
def matrix_from_scaling(v: float3) -> float4x4: ...
|
3502
|
+
|
3503
|
+
def matrix_from_translation(v: float3) -> float4x4: ...
|
3504
|
+
|
3505
|
+
@overload
|
3506
|
+
def max(x: float1, y: float1) -> float1: ...
|
3507
|
+
|
3508
|
+
@overload
|
3509
|
+
def max(x: float2, y: float2) -> float2: ...
|
3510
|
+
|
3511
|
+
@overload
|
3512
|
+
def max(x: float3, y: float3) -> float3: ...
|
3513
|
+
|
3514
|
+
@overload
|
3515
|
+
def max(x: float4, y: float4) -> float4: ...
|
3516
|
+
|
3517
|
+
@overload
|
3518
|
+
def max(x: uint1, y: uint1) -> uint1: ...
|
3519
|
+
|
3520
|
+
@overload
|
3521
|
+
def max(x: uint2, y: uint2) -> uint2: ...
|
3522
|
+
|
3523
|
+
@overload
|
3524
|
+
def max(x: uint3, y: uint3) -> uint3: ...
|
3525
|
+
|
3526
|
+
@overload
|
3527
|
+
def max(x: uint4, y: uint4) -> uint4: ...
|
3528
|
+
|
3529
|
+
@overload
|
3530
|
+
def max(x: int1, y: int1) -> int1: ...
|
3531
|
+
|
3532
|
+
@overload
|
3533
|
+
def max(x: int2, y: int2) -> int2: ...
|
3534
|
+
|
3535
|
+
@overload
|
3536
|
+
def max(x: int3, y: int3) -> int3: ...
|
3537
|
+
|
3538
|
+
@overload
|
3539
|
+
def max(x: int4, y: int4) -> int4: ...
|
3540
|
+
|
3541
|
+
@overload
|
3542
|
+
def max(x: bool1, y: bool1) -> bool1: ...
|
3543
|
+
|
3544
|
+
@overload
|
3545
|
+
def max(x: bool2, y: bool2) -> bool2: ...
|
3546
|
+
|
3547
|
+
@overload
|
3548
|
+
def max(x: bool3, y: bool3) -> bool3: ...
|
3549
|
+
|
3550
|
+
@overload
|
3551
|
+
def max(x: bool4, y: bool4) -> bool4: ...
|
3552
|
+
|
3553
|
+
@overload
|
3554
|
+
def min(x: float1, y: float1) -> float1: ...
|
3555
|
+
|
3556
|
+
@overload
|
3557
|
+
def min(x: float2, y: float2) -> float2: ...
|
3558
|
+
|
3559
|
+
@overload
|
3560
|
+
def min(x: float3, y: float3) -> float3: ...
|
3561
|
+
|
3562
|
+
@overload
|
3563
|
+
def min(x: float4, y: float4) -> float4: ...
|
3564
|
+
|
3565
|
+
@overload
|
3566
|
+
def min(x: uint1, y: uint1) -> uint1: ...
|
3567
|
+
|
3568
|
+
@overload
|
3569
|
+
def min(x: uint2, y: uint2) -> uint2: ...
|
3570
|
+
|
3571
|
+
@overload
|
3572
|
+
def min(x: uint3, y: uint3) -> uint3: ...
|
3573
|
+
|
3574
|
+
@overload
|
3575
|
+
def min(x: uint4, y: uint4) -> uint4: ...
|
3576
|
+
|
3577
|
+
@overload
|
3578
|
+
def min(x: int1, y: int1) -> int1: ...
|
3579
|
+
|
3580
|
+
@overload
|
3581
|
+
def min(x: int2, y: int2) -> int2: ...
|
3582
|
+
|
3583
|
+
@overload
|
3584
|
+
def min(x: int3, y: int3) -> int3: ...
|
3585
|
+
|
3586
|
+
@overload
|
3587
|
+
def min(x: int4, y: int4) -> int4: ...
|
3588
|
+
|
3589
|
+
@overload
|
3590
|
+
def min(x: bool1, y: bool1) -> bool1: ...
|
3591
|
+
|
3592
|
+
@overload
|
3593
|
+
def min(x: bool2, y: bool2) -> bool2: ...
|
3594
|
+
|
3595
|
+
@overload
|
3596
|
+
def min(x: bool3, y: bool3) -> bool3: ...
|
3597
|
+
|
3598
|
+
@overload
|
3599
|
+
def min(x: bool4, y: bool4) -> bool4: ...
|
3600
|
+
|
3601
|
+
@overload
|
3602
|
+
def mul(x: float2x2, y: float2x2) -> float2x2: ...
|
3603
|
+
|
3604
|
+
@overload
|
3605
|
+
def mul(x: float2x2, y: float2) -> float2: ...
|
3606
|
+
|
3607
|
+
@overload
|
3608
|
+
def mul(x: float2, y: float2x2) -> float2: ...
|
3609
|
+
|
3610
|
+
@overload
|
3611
|
+
def mul(x: float3x3, y: float3x3) -> float3x3: ...
|
3612
|
+
|
3613
|
+
@overload
|
3614
|
+
def mul(x: float3x3, y: float3) -> float3: ...
|
3615
|
+
|
3616
|
+
@overload
|
3617
|
+
def mul(x: float3, y: float3x3) -> float3: ...
|
3618
|
+
|
3619
|
+
@overload
|
3620
|
+
def mul(x: float2x4, y: "sgl::math::matrix<float, 4, 2>") -> float2x2: ...
|
3621
|
+
|
3622
|
+
@overload
|
3623
|
+
def mul(x: float2x4, y: float4) -> float2: ...
|
3624
|
+
|
3625
|
+
@overload
|
3626
|
+
def mul(x: float2, y: float2x4) -> float4: ...
|
3627
|
+
|
3628
|
+
@overload
|
3629
|
+
def mul(x: float3x4, y: "sgl::math::matrix<float, 4, 3>") -> float3x3: ...
|
3630
|
+
|
3631
|
+
@overload
|
3632
|
+
def mul(x: float3x4, y: float4) -> float3: ...
|
3633
|
+
|
3634
|
+
@overload
|
3635
|
+
def mul(x: float3, y: float3x4) -> float4: ...
|
3636
|
+
|
3637
|
+
@overload
|
3638
|
+
def mul(x: float4x4, y: float4x4) -> float4x4: ...
|
3639
|
+
|
3640
|
+
@overload
|
3641
|
+
def mul(x: float4x4, y: float4) -> float4: ...
|
3642
|
+
|
3643
|
+
@overload
|
3644
|
+
def mul(x: float4, y: float4x4) -> float4: ...
|
3645
|
+
|
3646
|
+
@overload
|
3647
|
+
def mul(x: quatf, y: quatf) -> quatf: ...
|
3648
|
+
|
3649
|
+
@overload
|
3650
|
+
def mul(x: quatf, y: float3) -> float3: ...
|
3651
|
+
|
3652
|
+
@overload
|
3653
|
+
def none(x: bool1) -> bool: ...
|
3654
|
+
|
3655
|
+
@overload
|
3656
|
+
def none(x: bool2) -> bool: ...
|
3657
|
+
|
3658
|
+
@overload
|
3659
|
+
def none(x: bool3) -> bool: ...
|
3660
|
+
|
3661
|
+
@overload
|
3662
|
+
def none(x: bool4) -> bool: ...
|
3663
|
+
|
3664
|
+
@overload
|
3665
|
+
def normalize(x: float1) -> float1: ...
|
3666
|
+
|
3667
|
+
@overload
|
3668
|
+
def normalize(x: float2) -> float2: ...
|
3669
|
+
|
3670
|
+
@overload
|
3671
|
+
def normalize(x: float3) -> float3: ...
|
3672
|
+
|
3673
|
+
@overload
|
3674
|
+
def normalize(x: float4) -> float4: ...
|
3675
|
+
|
3676
|
+
@overload
|
3677
|
+
def normalize(x: quatf) -> quatf: ...
|
3678
|
+
|
3679
|
+
def ortho(left: float, right: float, bottom: float, top: float, z_near: float, z_far: float) -> float4x4: ...
|
3680
|
+
|
3681
|
+
def perspective(fovy: float, aspect: float, z_near: float, z_far: float) -> float4x4: ...
|
3682
|
+
|
3683
|
+
def pitch(x: quatf) -> float: ...
|
3684
|
+
|
3685
|
+
@overload
|
3686
|
+
def pow(x: float, y: float) -> float: ...
|
3687
|
+
|
3688
|
+
@overload
|
3689
|
+
def pow(x: float, y: float) -> float: ...
|
3690
|
+
|
3691
|
+
@overload
|
3692
|
+
def pow(x: float1, y: float1) -> float1: ...
|
3693
|
+
|
3694
|
+
@overload
|
3695
|
+
def pow(x: float2, y: float2) -> float2: ...
|
3696
|
+
|
3697
|
+
@overload
|
3698
|
+
def pow(x: float3, y: float3) -> float3: ...
|
3699
|
+
|
3700
|
+
@overload
|
3701
|
+
def pow(x: float4, y: float4) -> float4: ...
|
3702
|
+
|
3703
|
+
def quat_from_angle_axis(angle: float, axis: float3) -> quatf: ...
|
3704
|
+
|
3705
|
+
def quat_from_euler_angles(angles: float3) -> quatf: ...
|
3706
|
+
|
3707
|
+
def quat_from_look_at(dir: float3, up: float3, handedness: Handedness = Handedness.right_handed) -> quatf: ...
|
3708
|
+
|
3709
|
+
def quat_from_matrix(m: float3x3) -> quatf: ...
|
3710
|
+
|
3711
|
+
def quat_from_rotation_between_vectors(from_: float3, to: float3) -> quatf: ...
|
3712
|
+
|
3713
|
+
class quatf:
|
3714
|
+
@overload
|
3715
|
+
def __init__(self) -> None: ...
|
3716
|
+
|
3717
|
+
@overload
|
3718
|
+
def __init__(self, x: float, y: float, z: float, w: float) -> None: ...
|
3719
|
+
|
3720
|
+
@overload
|
3721
|
+
def __init__(self, xyz: float3, w: float) -> None: ...
|
3722
|
+
|
3723
|
+
@overload
|
3724
|
+
def __init__(self, a: Sequence[float]) -> None: ...
|
3725
|
+
|
3726
|
+
@staticmethod
|
3727
|
+
def identity() -> quatf: ...
|
3728
|
+
|
3729
|
+
@property
|
3730
|
+
def x(self) -> float: ...
|
3731
|
+
|
3732
|
+
@x.setter
|
3733
|
+
def x(self, arg: float, /) -> None: ...
|
3734
|
+
|
3735
|
+
@property
|
3736
|
+
def y(self) -> float: ...
|
3737
|
+
|
3738
|
+
@y.setter
|
3739
|
+
def y(self, arg: float, /) -> None: ...
|
3740
|
+
|
3741
|
+
@property
|
3742
|
+
def z(self) -> float: ...
|
3743
|
+
|
3744
|
+
@z.setter
|
3745
|
+
def z(self, arg: float, /) -> None: ...
|
3746
|
+
|
3747
|
+
@property
|
3748
|
+
def w(self) -> float: ...
|
3749
|
+
|
3750
|
+
@w.setter
|
3751
|
+
def w(self, arg: float, /) -> None: ...
|
3752
|
+
|
3753
|
+
def __getitem__(self, arg: int, /) -> float: ...
|
3754
|
+
|
3755
|
+
def __setitem__(self, arg0: int, arg1: float, /) -> None: ...
|
3756
|
+
|
3757
|
+
@property
|
3758
|
+
def shape(self) -> tuple: ...
|
3759
|
+
|
3760
|
+
@property
|
3761
|
+
def element_type(self) -> object: ...
|
3762
|
+
|
3763
|
+
def __repr__(self) -> str: ...
|
3764
|
+
|
3765
|
+
def __str__(self) -> str: ...
|
3766
|
+
|
3767
|
+
def __pos__(self) -> quatf: ...
|
3768
|
+
|
3769
|
+
def __neg__(self) -> quatf: ...
|
3770
|
+
|
3771
|
+
@overload
|
3772
|
+
def __add__(self, arg: quatf, /) -> quatf: ...
|
3773
|
+
|
3774
|
+
@overload
|
3775
|
+
def __add__(self, arg: float, /) -> quatf: ...
|
3776
|
+
|
3777
|
+
def __radd__(self, arg: float, /) -> quatf: ...
|
3778
|
+
|
3779
|
+
@overload
|
3780
|
+
def __sub__(self, arg: quatf, /) -> quatf: ...
|
3781
|
+
|
3782
|
+
@overload
|
3783
|
+
def __sub__(self, arg: float, /) -> quatf: ...
|
3784
|
+
|
3785
|
+
def __rsub__(self, arg: float, /) -> quatf: ...
|
3786
|
+
|
3787
|
+
def __mul__(self, arg: float, /) -> quatf: ...
|
3788
|
+
|
3789
|
+
def __rmul__(self, arg: float, /) -> quatf: ...
|
3790
|
+
|
3791
|
+
def __truediv__(self, arg: float, /) -> quatf: ...
|
3792
|
+
|
3793
|
+
def __eq__(self, arg: quatf, /) -> bool4: ...
|
3794
|
+
|
3795
|
+
def __ne__(self, arg: quatf, /) -> bool4: ...
|
3796
|
+
|
3797
|
+
@overload
|
3798
|
+
def radians(x: float) -> float: ...
|
3799
|
+
|
3800
|
+
@overload
|
3801
|
+
def radians(x: float) -> float: ...
|
3802
|
+
|
3803
|
+
@overload
|
3804
|
+
def radians(x: float1) -> float1: ...
|
3805
|
+
|
3806
|
+
@overload
|
3807
|
+
def radians(x: float2) -> float2: ...
|
3808
|
+
|
3809
|
+
@overload
|
3810
|
+
def radians(x: float3) -> float3: ...
|
3811
|
+
|
3812
|
+
@overload
|
3813
|
+
def radians(x: float4) -> float4: ...
|
3814
|
+
|
3815
|
+
@overload
|
3816
|
+
def rcp(x: float) -> float: ...
|
3817
|
+
|
3818
|
+
@overload
|
3819
|
+
def rcp(x: float) -> float: ...
|
3820
|
+
|
3821
|
+
@overload
|
3822
|
+
def rcp(x: float1) -> float1: ...
|
3823
|
+
|
3824
|
+
@overload
|
3825
|
+
def rcp(x: float2) -> float2: ...
|
3826
|
+
|
3827
|
+
@overload
|
3828
|
+
def rcp(x: float3) -> float3: ...
|
3829
|
+
|
3830
|
+
@overload
|
3831
|
+
def rcp(x: float4) -> float4: ...
|
3832
|
+
|
3833
|
+
@overload
|
3834
|
+
def reflect(i: float1, n: float1) -> float1: ...
|
3835
|
+
|
3836
|
+
@overload
|
3837
|
+
def reflect(i: float2, n: float2) -> float2: ...
|
3838
|
+
|
3839
|
+
@overload
|
3840
|
+
def reflect(i: float3, n: float3) -> float3: ...
|
3841
|
+
|
3842
|
+
@overload
|
3843
|
+
def reflect(i: float4, n: float4) -> float4: ...
|
3844
|
+
|
3845
|
+
def roll(x: quatf) -> float: ...
|
3846
|
+
|
3847
|
+
def rotate(m: float4x4, angle: float, axis: float3) -> float4x4: ...
|
3848
|
+
|
3849
|
+
@overload
|
3850
|
+
def round(x: float) -> float: ...
|
3851
|
+
|
3852
|
+
@overload
|
3853
|
+
def round(x: float) -> float: ...
|
3854
|
+
|
3855
|
+
@overload
|
3856
|
+
def round(x: float1) -> float1: ...
|
3857
|
+
|
3858
|
+
@overload
|
3859
|
+
def round(x: float2) -> float2: ...
|
3860
|
+
|
3861
|
+
@overload
|
3862
|
+
def round(x: float3) -> float3: ...
|
3863
|
+
|
3864
|
+
@overload
|
3865
|
+
def round(x: float4) -> float4: ...
|
3866
|
+
|
3867
|
+
@overload
|
3868
|
+
def rsqrt(x: float) -> float: ...
|
3869
|
+
|
3870
|
+
@overload
|
3871
|
+
def rsqrt(x: float) -> float: ...
|
3872
|
+
|
3873
|
+
@overload
|
3874
|
+
def rsqrt(x: float1) -> float1: ...
|
3875
|
+
|
3876
|
+
@overload
|
3877
|
+
def rsqrt(x: float2) -> float2: ...
|
3878
|
+
|
3879
|
+
@overload
|
3880
|
+
def rsqrt(x: float3) -> float3: ...
|
3881
|
+
|
3882
|
+
@overload
|
3883
|
+
def rsqrt(x: float4) -> float4: ...
|
3884
|
+
|
3885
|
+
@overload
|
3886
|
+
def saturate(x: float) -> float: ...
|
3887
|
+
|
3888
|
+
@overload
|
3889
|
+
def saturate(x: float) -> float: ...
|
3890
|
+
|
3891
|
+
@overload
|
3892
|
+
def saturate(x: float1) -> float1: ...
|
3893
|
+
|
3894
|
+
@overload
|
3895
|
+
def saturate(x: float2) -> float2: ...
|
3896
|
+
|
3897
|
+
@overload
|
3898
|
+
def saturate(x: float3) -> float3: ...
|
3899
|
+
|
3900
|
+
@overload
|
3901
|
+
def saturate(x: float4) -> float4: ...
|
3902
|
+
|
3903
|
+
def scale(m: float4x4, v: float3) -> float4x4: ...
|
3904
|
+
|
3905
|
+
@overload
|
3906
|
+
def sign(x: float1) -> float1: ...
|
3907
|
+
|
3908
|
+
@overload
|
3909
|
+
def sign(x: float2) -> float2: ...
|
3910
|
+
|
3911
|
+
@overload
|
3912
|
+
def sign(x: float3) -> float3: ...
|
3913
|
+
|
3914
|
+
@overload
|
3915
|
+
def sign(x: float4) -> float4: ...
|
3916
|
+
|
3917
|
+
@overload
|
3918
|
+
def sign(x: int1) -> int1: ...
|
3919
|
+
|
3920
|
+
@overload
|
3921
|
+
def sign(x: int2) -> int2: ...
|
3922
|
+
|
3923
|
+
@overload
|
3924
|
+
def sign(x: int3) -> int3: ...
|
3925
|
+
|
3926
|
+
@overload
|
3927
|
+
def sign(x: int4) -> int4: ...
|
3928
|
+
|
3929
|
+
@overload
|
3930
|
+
def sin(x: float) -> float: ...
|
3931
|
+
|
3932
|
+
@overload
|
3933
|
+
def sin(x: float) -> float: ...
|
3934
|
+
|
3935
|
+
@overload
|
3936
|
+
def sin(x: float1) -> float1: ...
|
3937
|
+
|
3938
|
+
@overload
|
3939
|
+
def sin(x: float2) -> float2: ...
|
3940
|
+
|
3941
|
+
@overload
|
3942
|
+
def sin(x: float3) -> float3: ...
|
3943
|
+
|
3944
|
+
@overload
|
3945
|
+
def sin(x: float4) -> float4: ...
|
3946
|
+
|
3947
|
+
@overload
|
3948
|
+
def sinh(x: float) -> float: ...
|
3949
|
+
|
3950
|
+
@overload
|
3951
|
+
def sinh(x: float) -> float: ...
|
3952
|
+
|
3953
|
+
@overload
|
3954
|
+
def sinh(x: float1) -> float1: ...
|
3955
|
+
|
3956
|
+
@overload
|
3957
|
+
def sinh(x: float2) -> float2: ...
|
3958
|
+
|
3959
|
+
@overload
|
3960
|
+
def sinh(x: float3) -> float3: ...
|
3961
|
+
|
3962
|
+
@overload
|
3963
|
+
def sinh(x: float4) -> float4: ...
|
3964
|
+
|
3965
|
+
def slerp(x: quatf, y: quatf, s: float) -> quatf: ...
|
3966
|
+
|
3967
|
+
@overload
|
3968
|
+
def smoothstep(min: float, max: float, x: float) -> float: ...
|
3969
|
+
|
3970
|
+
@overload
|
3971
|
+
def smoothstep(min: float, max: float, x: float) -> float: ...
|
3972
|
+
|
3973
|
+
@overload
|
3974
|
+
def smoothstep(min: float1, max: float1, x: float1) -> float1: ...
|
3975
|
+
|
3976
|
+
@overload
|
3977
|
+
def smoothstep(min: float2, max: float2, x: float2) -> float2: ...
|
3978
|
+
|
3979
|
+
@overload
|
3980
|
+
def smoothstep(min: float3, max: float3, x: float3) -> float3: ...
|
3981
|
+
|
3982
|
+
@overload
|
3983
|
+
def smoothstep(min: float4, max: float4, x: float4) -> float4: ...
|
3984
|
+
|
3985
|
+
@overload
|
3986
|
+
def sqrt(x: float) -> float: ...
|
3987
|
+
|
3988
|
+
@overload
|
3989
|
+
def sqrt(x: float) -> float: ...
|
3990
|
+
|
3991
|
+
@overload
|
3992
|
+
def sqrt(x: float1) -> float1: ...
|
3993
|
+
|
3994
|
+
@overload
|
3995
|
+
def sqrt(x: float2) -> float2: ...
|
3996
|
+
|
3997
|
+
@overload
|
3998
|
+
def sqrt(x: float3) -> float3: ...
|
3999
|
+
|
4000
|
+
@overload
|
4001
|
+
def sqrt(x: float4) -> float4: ...
|
4002
|
+
|
4003
|
+
@overload
|
4004
|
+
def step(x: float, y: float) -> float: ...
|
4005
|
+
|
4006
|
+
@overload
|
4007
|
+
def step(x: float, y: float) -> float: ...
|
4008
|
+
|
4009
|
+
@overload
|
4010
|
+
def step(x: float1, y: float1) -> float1: ...
|
4011
|
+
|
4012
|
+
@overload
|
4013
|
+
def step(x: float2, y: float2) -> float2: ...
|
4014
|
+
|
4015
|
+
@overload
|
4016
|
+
def step(x: float3, y: float3) -> float3: ...
|
4017
|
+
|
4018
|
+
@overload
|
4019
|
+
def step(x: float4, y: float4) -> float4: ...
|
4020
|
+
|
4021
|
+
@overload
|
4022
|
+
def tan(x: float) -> float: ...
|
4023
|
+
|
4024
|
+
@overload
|
4025
|
+
def tan(x: float) -> float: ...
|
4026
|
+
|
4027
|
+
@overload
|
4028
|
+
def tan(x: float1) -> float1: ...
|
4029
|
+
|
4030
|
+
@overload
|
4031
|
+
def tan(x: float2) -> float2: ...
|
4032
|
+
|
4033
|
+
@overload
|
4034
|
+
def tan(x: float3) -> float3: ...
|
4035
|
+
|
4036
|
+
@overload
|
4037
|
+
def tan(x: float4) -> float4: ...
|
4038
|
+
|
4039
|
+
@overload
|
4040
|
+
def tanh(x: float) -> float: ...
|
4041
|
+
|
4042
|
+
@overload
|
4043
|
+
def tanh(x: float) -> float: ...
|
4044
|
+
|
4045
|
+
@overload
|
4046
|
+
def tanh(x: float1) -> float1: ...
|
4047
|
+
|
4048
|
+
@overload
|
4049
|
+
def tanh(x: float2) -> float2: ...
|
4050
|
+
|
4051
|
+
@overload
|
4052
|
+
def tanh(x: float3) -> float3: ...
|
4053
|
+
|
4054
|
+
@overload
|
4055
|
+
def tanh(x: float4) -> float4: ...
|
4056
|
+
|
4057
|
+
def transform_point(m: float4x4, v: float3) -> float3: ...
|
4058
|
+
|
4059
|
+
@overload
|
4060
|
+
def transform_vector(m: float3x3, v: float3) -> float3: ...
|
4061
|
+
|
4062
|
+
@overload
|
4063
|
+
def transform_vector(m: float4x4, v: float3) -> float3: ...
|
4064
|
+
|
4065
|
+
@overload
|
4066
|
+
def transform_vector(q: quatf, v: float3) -> float3: ...
|
4067
|
+
|
4068
|
+
def translate(m: float4x4, v: float3) -> float4x4: ...
|
4069
|
+
|
4070
|
+
@overload
|
4071
|
+
def transpose(x: float2x2) -> float2x2: ...
|
4072
|
+
|
4073
|
+
@overload
|
4074
|
+
def transpose(x: float3x3) -> float3x3: ...
|
4075
|
+
|
4076
|
+
@overload
|
4077
|
+
def transpose(x: float2x4) -> "sgl::math::matrix<float, 4, 2>": ...
|
4078
|
+
|
4079
|
+
@overload
|
4080
|
+
def transpose(x: float3x4) -> "sgl::math::matrix<float, 4, 3>": ...
|
4081
|
+
|
4082
|
+
@overload
|
4083
|
+
def transpose(x: float4x4) -> float4x4: ...
|
4084
|
+
|
4085
|
+
@overload
|
4086
|
+
def trunc(x: float) -> float: ...
|
4087
|
+
|
4088
|
+
@overload
|
4089
|
+
def trunc(x: float) -> float: ...
|
4090
|
+
|
4091
|
+
@overload
|
4092
|
+
def trunc(x: float1) -> float1: ...
|
4093
|
+
|
4094
|
+
@overload
|
4095
|
+
def trunc(x: float2) -> float2: ...
|
4096
|
+
|
4097
|
+
@overload
|
4098
|
+
def trunc(x: float3) -> float3: ...
|
4099
|
+
|
4100
|
+
@overload
|
4101
|
+
def trunc(x: float4) -> float4: ...
|
4102
|
+
|
4103
|
+
class uint1:
|
4104
|
+
@overload
|
4105
|
+
def __init__(self) -> None: ...
|
4106
|
+
|
4107
|
+
@overload
|
4108
|
+
def __init__(self, scalar: int) -> None: ...
|
4109
|
+
|
4110
|
+
@overload
|
4111
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
4112
|
+
|
4113
|
+
@property
|
4114
|
+
def x(self) -> int: ...
|
4115
|
+
|
4116
|
+
@x.setter
|
4117
|
+
def x(self, arg: int, /) -> None: ...
|
4118
|
+
|
4119
|
+
def __len__(self) -> int: ...
|
4120
|
+
|
4121
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
4122
|
+
|
4123
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
4124
|
+
|
4125
|
+
@property
|
4126
|
+
def shape(self) -> tuple: ...
|
4127
|
+
|
4128
|
+
@property
|
4129
|
+
def element_type(self) -> object: ...
|
4130
|
+
|
4131
|
+
def __repr__(self) -> str: ...
|
4132
|
+
|
4133
|
+
def __str__(self) -> str: ...
|
4134
|
+
|
4135
|
+
def __pos__(self) -> uint1: ...
|
4136
|
+
|
4137
|
+
def __neg__(self) -> uint1: ...
|
4138
|
+
|
4139
|
+
@overload
|
4140
|
+
def __add__(self, arg: uint1, /) -> uint1: ...
|
4141
|
+
|
4142
|
+
@overload
|
4143
|
+
def __add__(self, arg: int, /) -> uint1: ...
|
4144
|
+
|
4145
|
+
def __radd__(self, arg: int, /) -> uint1: ...
|
4146
|
+
|
4147
|
+
@overload
|
4148
|
+
def __sub__(self, arg: uint1, /) -> uint1: ...
|
4149
|
+
|
4150
|
+
@overload
|
4151
|
+
def __sub__(self, arg: int, /) -> uint1: ...
|
4152
|
+
|
4153
|
+
def __rsub__(self, arg: int, /) -> uint1: ...
|
4154
|
+
|
4155
|
+
@overload
|
4156
|
+
def __mul__(self, arg: uint1, /) -> uint1: ...
|
4157
|
+
|
4158
|
+
@overload
|
4159
|
+
def __mul__(self, arg: int, /) -> uint1: ...
|
4160
|
+
|
4161
|
+
def __rmul__(self, arg: int, /) -> uint1: ...
|
4162
|
+
|
4163
|
+
@overload
|
4164
|
+
def __truediv__(self, arg: uint1, /) -> uint1: ...
|
4165
|
+
|
4166
|
+
@overload
|
4167
|
+
def __truediv__(self, arg: int, /) -> uint1: ...
|
4168
|
+
|
4169
|
+
def __rtruediv__(self, arg: int, /) -> uint1: ...
|
4170
|
+
|
4171
|
+
@overload
|
4172
|
+
def __iadd__(self, arg: uint1, /) -> uint1: ...
|
4173
|
+
|
4174
|
+
@overload
|
4175
|
+
def __iadd__(self, arg: int, /) -> uint1: ...
|
4176
|
+
|
4177
|
+
@overload
|
4178
|
+
def __isub__(self, arg: uint1, /) -> uint1: ...
|
4179
|
+
|
4180
|
+
@overload
|
4181
|
+
def __isub__(self, arg: int, /) -> uint1: ...
|
4182
|
+
|
4183
|
+
@overload
|
4184
|
+
def __imul__(self, arg: uint1, /) -> uint1: ...
|
4185
|
+
|
4186
|
+
@overload
|
4187
|
+
def __imul__(self, arg: int, /) -> uint1: ...
|
4188
|
+
|
4189
|
+
@overload
|
4190
|
+
def __itruediv__(self, arg: uint1, /) -> uint1: ...
|
4191
|
+
|
4192
|
+
@overload
|
4193
|
+
def __itruediv__(self, arg: int, /) -> uint1: ...
|
4194
|
+
|
4195
|
+
@overload
|
4196
|
+
def __mod__(self, arg: uint1, /) -> uint1: ...
|
4197
|
+
|
4198
|
+
@overload
|
4199
|
+
def __mod__(self, arg: int, /) -> uint1: ...
|
4200
|
+
|
4201
|
+
def __rmod__(self, arg: int, /) -> uint1: ...
|
4202
|
+
|
4203
|
+
@overload
|
4204
|
+
def __lshift__(self, arg: uint1, /) -> uint1: ...
|
4205
|
+
|
4206
|
+
@overload
|
4207
|
+
def __lshift__(self, arg: int, /) -> uint1: ...
|
4208
|
+
|
4209
|
+
def __rlshift__(self, arg: int, /) -> uint1: ...
|
4210
|
+
|
4211
|
+
@overload
|
4212
|
+
def __rshift__(self, arg: uint1, /) -> uint1: ...
|
4213
|
+
|
4214
|
+
@overload
|
4215
|
+
def __rshift__(self, arg: int, /) -> uint1: ...
|
4216
|
+
|
4217
|
+
def __rrshift__(self, arg: int, /) -> uint1: ...
|
4218
|
+
|
4219
|
+
@overload
|
4220
|
+
def __or__(self, arg: uint1, /) -> uint1: ...
|
4221
|
+
|
4222
|
+
@overload
|
4223
|
+
def __or__(self, arg: int, /) -> uint1: ...
|
4224
|
+
|
4225
|
+
def __ror__(self, arg: int, /) -> uint1: ...
|
4226
|
+
|
4227
|
+
@overload
|
4228
|
+
def __and__(self, arg: uint1, /) -> uint1: ...
|
4229
|
+
|
4230
|
+
@overload
|
4231
|
+
def __and__(self, arg: int, /) -> uint1: ...
|
4232
|
+
|
4233
|
+
def __rand__(self, arg: int, /) -> uint1: ...
|
4234
|
+
|
4235
|
+
@overload
|
4236
|
+
def __xor__(self, arg: uint1, /) -> uint1: ...
|
4237
|
+
|
4238
|
+
@overload
|
4239
|
+
def __xor__(self, arg: int, /) -> uint1: ...
|
4240
|
+
|
4241
|
+
def __rxor__(self, arg: int, /) -> uint1: ...
|
4242
|
+
|
4243
|
+
@overload
|
4244
|
+
def __imod__(self, arg: uint1, /) -> uint1: ...
|
4245
|
+
|
4246
|
+
@overload
|
4247
|
+
def __imod__(self, arg: int, /) -> uint1: ...
|
4248
|
+
|
4249
|
+
@overload
|
4250
|
+
def __ilshift__(self, arg: uint1, /) -> uint1: ...
|
4251
|
+
|
4252
|
+
@overload
|
4253
|
+
def __ilshift__(self, arg: int, /) -> uint1: ...
|
4254
|
+
|
4255
|
+
@overload
|
4256
|
+
def __irshift__(self, arg: uint1, /) -> uint1: ...
|
4257
|
+
|
4258
|
+
@overload
|
4259
|
+
def __irshift__(self, arg: int, /) -> uint1: ...
|
4260
|
+
|
4261
|
+
@overload
|
4262
|
+
def __ior__(self, arg: uint1, /) -> uint1: ...
|
4263
|
+
|
4264
|
+
@overload
|
4265
|
+
def __ior__(self, arg: int, /) -> uint1: ...
|
4266
|
+
|
4267
|
+
@overload
|
4268
|
+
def __iand__(self, arg: uint1, /) -> uint1: ...
|
4269
|
+
|
4270
|
+
@overload
|
4271
|
+
def __iand__(self, arg: int, /) -> uint1: ...
|
4272
|
+
|
4273
|
+
@overload
|
4274
|
+
def __ixor__(self, arg: uint1, /) -> uint1: ...
|
4275
|
+
|
4276
|
+
@overload
|
4277
|
+
def __ixor__(self, arg: int, /) -> uint1: ...
|
4278
|
+
|
4279
|
+
@overload
|
4280
|
+
def __eq__(self, arg: uint1, /) -> bool1: ...
|
4281
|
+
|
4282
|
+
@overload
|
4283
|
+
def __eq__(self, arg: int, /) -> bool1: ...
|
4284
|
+
|
4285
|
+
@overload
|
4286
|
+
def __eq__(self, arg: int, /) -> bool1: ...
|
4287
|
+
|
4288
|
+
@overload
|
4289
|
+
def __ne__(self, arg: uint1, /) -> bool1: ...
|
4290
|
+
|
4291
|
+
@overload
|
4292
|
+
def __ne__(self, arg: int, /) -> bool1: ...
|
4293
|
+
|
4294
|
+
@overload
|
4295
|
+
def __ne__(self, arg: int, /) -> bool1: ...
|
4296
|
+
|
4297
|
+
@overload
|
4298
|
+
def __lt__(self, arg: uint1, /) -> bool1: ...
|
4299
|
+
|
4300
|
+
@overload
|
4301
|
+
def __lt__(self, arg: int, /) -> bool1: ...
|
4302
|
+
|
4303
|
+
@overload
|
4304
|
+
def __lt__(self, arg: int, /) -> bool1: ...
|
4305
|
+
|
4306
|
+
@overload
|
4307
|
+
def __gt__(self, arg: int, /) -> bool1: ...
|
4308
|
+
|
4309
|
+
@overload
|
4310
|
+
def __gt__(self, arg: uint1, /) -> bool1: ...
|
4311
|
+
|
4312
|
+
@overload
|
4313
|
+
def __gt__(self, arg: int, /) -> bool1: ...
|
4314
|
+
|
4315
|
+
@overload
|
4316
|
+
def __le__(self, arg: uint1, /) -> bool1: ...
|
4317
|
+
|
4318
|
+
@overload
|
4319
|
+
def __le__(self, arg: int, /) -> bool1: ...
|
4320
|
+
|
4321
|
+
@overload
|
4322
|
+
def __le__(self, arg: int, /) -> bool1: ...
|
4323
|
+
|
4324
|
+
@overload
|
4325
|
+
def __ge__(self, arg: int, /) -> bool1: ...
|
4326
|
+
|
4327
|
+
@overload
|
4328
|
+
def __ge__(self, arg: uint1, /) -> bool1: ...
|
4329
|
+
|
4330
|
+
@overload
|
4331
|
+
def __ge__(self, arg: int, /) -> bool1: ...
|
4332
|
+
|
4333
|
+
class uint2:
|
4334
|
+
@overload
|
4335
|
+
def __init__(self) -> None: ...
|
4336
|
+
|
4337
|
+
@overload
|
4338
|
+
def __init__(self, scalar: int) -> None: ...
|
4339
|
+
|
4340
|
+
@overload
|
4341
|
+
def __init__(self, x: int, y: int) -> None: ...
|
4342
|
+
|
4343
|
+
@overload
|
4344
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
4345
|
+
|
4346
|
+
@property
|
4347
|
+
def x(self) -> int: ...
|
4348
|
+
|
4349
|
+
@x.setter
|
4350
|
+
def x(self, arg: int, /) -> None: ...
|
4351
|
+
|
4352
|
+
@property
|
4353
|
+
def y(self) -> int: ...
|
4354
|
+
|
4355
|
+
@y.setter
|
4356
|
+
def y(self, arg: int, /) -> None: ...
|
4357
|
+
|
4358
|
+
def __len__(self) -> int: ...
|
4359
|
+
|
4360
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
4361
|
+
|
4362
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
4363
|
+
|
4364
|
+
@property
|
4365
|
+
def shape(self) -> tuple: ...
|
4366
|
+
|
4367
|
+
@property
|
4368
|
+
def element_type(self) -> object: ...
|
4369
|
+
|
4370
|
+
def __repr__(self) -> str: ...
|
4371
|
+
|
4372
|
+
def __str__(self) -> str: ...
|
4373
|
+
|
4374
|
+
def __pos__(self) -> uint2: ...
|
4375
|
+
|
4376
|
+
def __neg__(self) -> uint2: ...
|
4377
|
+
|
4378
|
+
@overload
|
4379
|
+
def __add__(self, arg: uint2, /) -> uint2: ...
|
4380
|
+
|
4381
|
+
@overload
|
4382
|
+
def __add__(self, arg: int, /) -> uint2: ...
|
4383
|
+
|
4384
|
+
def __radd__(self, arg: int, /) -> uint2: ...
|
4385
|
+
|
4386
|
+
@overload
|
4387
|
+
def __sub__(self, arg: uint2, /) -> uint2: ...
|
4388
|
+
|
4389
|
+
@overload
|
4390
|
+
def __sub__(self, arg: int, /) -> uint2: ...
|
4391
|
+
|
4392
|
+
def __rsub__(self, arg: int, /) -> uint2: ...
|
4393
|
+
|
4394
|
+
@overload
|
4395
|
+
def __mul__(self, arg: uint2, /) -> uint2: ...
|
4396
|
+
|
4397
|
+
@overload
|
4398
|
+
def __mul__(self, arg: int, /) -> uint2: ...
|
4399
|
+
|
4400
|
+
def __rmul__(self, arg: int, /) -> uint2: ...
|
4401
|
+
|
4402
|
+
@overload
|
4403
|
+
def __truediv__(self, arg: uint2, /) -> uint2: ...
|
4404
|
+
|
4405
|
+
@overload
|
4406
|
+
def __truediv__(self, arg: int, /) -> uint2: ...
|
4407
|
+
|
4408
|
+
def __rtruediv__(self, arg: int, /) -> uint2: ...
|
4409
|
+
|
4410
|
+
@overload
|
4411
|
+
def __iadd__(self, arg: uint2, /) -> uint2: ...
|
4412
|
+
|
4413
|
+
@overload
|
4414
|
+
def __iadd__(self, arg: int, /) -> uint2: ...
|
4415
|
+
|
4416
|
+
@overload
|
4417
|
+
def __isub__(self, arg: uint2, /) -> uint2: ...
|
4418
|
+
|
4419
|
+
@overload
|
4420
|
+
def __isub__(self, arg: int, /) -> uint2: ...
|
4421
|
+
|
4422
|
+
@overload
|
4423
|
+
def __imul__(self, arg: uint2, /) -> uint2: ...
|
4424
|
+
|
4425
|
+
@overload
|
4426
|
+
def __imul__(self, arg: int, /) -> uint2: ...
|
4427
|
+
|
4428
|
+
@overload
|
4429
|
+
def __itruediv__(self, arg: uint2, /) -> uint2: ...
|
4430
|
+
|
4431
|
+
@overload
|
4432
|
+
def __itruediv__(self, arg: int, /) -> uint2: ...
|
4433
|
+
|
4434
|
+
@overload
|
4435
|
+
def __mod__(self, arg: uint2, /) -> uint2: ...
|
4436
|
+
|
4437
|
+
@overload
|
4438
|
+
def __mod__(self, arg: int, /) -> uint2: ...
|
4439
|
+
|
4440
|
+
def __rmod__(self, arg: int, /) -> uint2: ...
|
4441
|
+
|
4442
|
+
@overload
|
4443
|
+
def __lshift__(self, arg: uint2, /) -> uint2: ...
|
4444
|
+
|
4445
|
+
@overload
|
4446
|
+
def __lshift__(self, arg: int, /) -> uint2: ...
|
4447
|
+
|
4448
|
+
def __rlshift__(self, arg: int, /) -> uint2: ...
|
4449
|
+
|
4450
|
+
@overload
|
4451
|
+
def __rshift__(self, arg: uint2, /) -> uint2: ...
|
4452
|
+
|
4453
|
+
@overload
|
4454
|
+
def __rshift__(self, arg: int, /) -> uint2: ...
|
4455
|
+
|
4456
|
+
def __rrshift__(self, arg: int, /) -> uint2: ...
|
4457
|
+
|
4458
|
+
@overload
|
4459
|
+
def __or__(self, arg: uint2, /) -> uint2: ...
|
4460
|
+
|
4461
|
+
@overload
|
4462
|
+
def __or__(self, arg: int, /) -> uint2: ...
|
4463
|
+
|
4464
|
+
def __ror__(self, arg: int, /) -> uint2: ...
|
4465
|
+
|
4466
|
+
@overload
|
4467
|
+
def __and__(self, arg: uint2, /) -> uint2: ...
|
4468
|
+
|
4469
|
+
@overload
|
4470
|
+
def __and__(self, arg: int, /) -> uint2: ...
|
4471
|
+
|
4472
|
+
def __rand__(self, arg: int, /) -> uint2: ...
|
4473
|
+
|
4474
|
+
@overload
|
4475
|
+
def __xor__(self, arg: uint2, /) -> uint2: ...
|
4476
|
+
|
4477
|
+
@overload
|
4478
|
+
def __xor__(self, arg: int, /) -> uint2: ...
|
4479
|
+
|
4480
|
+
def __rxor__(self, arg: int, /) -> uint2: ...
|
4481
|
+
|
4482
|
+
@overload
|
4483
|
+
def __imod__(self, arg: uint2, /) -> uint2: ...
|
4484
|
+
|
4485
|
+
@overload
|
4486
|
+
def __imod__(self, arg: int, /) -> uint2: ...
|
4487
|
+
|
4488
|
+
@overload
|
4489
|
+
def __ilshift__(self, arg: uint2, /) -> uint2: ...
|
4490
|
+
|
4491
|
+
@overload
|
4492
|
+
def __ilshift__(self, arg: int, /) -> uint2: ...
|
4493
|
+
|
4494
|
+
@overload
|
4495
|
+
def __irshift__(self, arg: uint2, /) -> uint2: ...
|
4496
|
+
|
4497
|
+
@overload
|
4498
|
+
def __irshift__(self, arg: int, /) -> uint2: ...
|
4499
|
+
|
4500
|
+
@overload
|
4501
|
+
def __ior__(self, arg: uint2, /) -> uint2: ...
|
4502
|
+
|
4503
|
+
@overload
|
4504
|
+
def __ior__(self, arg: int, /) -> uint2: ...
|
4505
|
+
|
4506
|
+
@overload
|
4507
|
+
def __iand__(self, arg: uint2, /) -> uint2: ...
|
4508
|
+
|
4509
|
+
@overload
|
4510
|
+
def __iand__(self, arg: int, /) -> uint2: ...
|
4511
|
+
|
4512
|
+
@overload
|
4513
|
+
def __ixor__(self, arg: uint2, /) -> uint2: ...
|
4514
|
+
|
4515
|
+
@overload
|
4516
|
+
def __ixor__(self, arg: int, /) -> uint2: ...
|
4517
|
+
|
4518
|
+
@overload
|
4519
|
+
def __eq__(self, arg: uint2, /) -> bool2: ...
|
4520
|
+
|
4521
|
+
@overload
|
4522
|
+
def __eq__(self, arg: int, /) -> bool2: ...
|
4523
|
+
|
4524
|
+
@overload
|
4525
|
+
def __eq__(self, arg: int, /) -> bool2: ...
|
4526
|
+
|
4527
|
+
@overload
|
4528
|
+
def __ne__(self, arg: uint2, /) -> bool2: ...
|
4529
|
+
|
4530
|
+
@overload
|
4531
|
+
def __ne__(self, arg: int, /) -> bool2: ...
|
4532
|
+
|
4533
|
+
@overload
|
4534
|
+
def __ne__(self, arg: int, /) -> bool2: ...
|
4535
|
+
|
4536
|
+
@overload
|
4537
|
+
def __lt__(self, arg: uint2, /) -> bool2: ...
|
4538
|
+
|
4539
|
+
@overload
|
4540
|
+
def __lt__(self, arg: int, /) -> bool2: ...
|
4541
|
+
|
4542
|
+
@overload
|
4543
|
+
def __lt__(self, arg: int, /) -> bool2: ...
|
4544
|
+
|
4545
|
+
@overload
|
4546
|
+
def __gt__(self, arg: int, /) -> bool2: ...
|
4547
|
+
|
4548
|
+
@overload
|
4549
|
+
def __gt__(self, arg: uint2, /) -> bool2: ...
|
4550
|
+
|
4551
|
+
@overload
|
4552
|
+
def __gt__(self, arg: int, /) -> bool2: ...
|
4553
|
+
|
4554
|
+
@overload
|
4555
|
+
def __le__(self, arg: uint2, /) -> bool2: ...
|
4556
|
+
|
4557
|
+
@overload
|
4558
|
+
def __le__(self, arg: int, /) -> bool2: ...
|
4559
|
+
|
4560
|
+
@overload
|
4561
|
+
def __le__(self, arg: int, /) -> bool2: ...
|
4562
|
+
|
4563
|
+
@overload
|
4564
|
+
def __ge__(self, arg: int, /) -> bool2: ...
|
4565
|
+
|
4566
|
+
@overload
|
4567
|
+
def __ge__(self, arg: uint2, /) -> bool2: ...
|
4568
|
+
|
4569
|
+
@overload
|
4570
|
+
def __ge__(self, arg: int, /) -> bool2: ...
|
4571
|
+
|
4572
|
+
class uint3:
|
4573
|
+
@overload
|
4574
|
+
def __init__(self) -> None: ...
|
4575
|
+
|
4576
|
+
@overload
|
4577
|
+
def __init__(self, scalar: int) -> None: ...
|
4578
|
+
|
4579
|
+
@overload
|
4580
|
+
def __init__(self, x: int, y: int, z: int) -> None: ...
|
4581
|
+
|
4582
|
+
@overload
|
4583
|
+
def __init__(self, xy: uint2, z: int) -> None: ...
|
4584
|
+
|
4585
|
+
@overload
|
4586
|
+
def __init__(self, x: int, yz: uint2) -> None: ...
|
4587
|
+
|
4588
|
+
@overload
|
4589
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
4590
|
+
|
4591
|
+
@property
|
4592
|
+
def x(self) -> int: ...
|
4593
|
+
|
4594
|
+
@x.setter
|
4595
|
+
def x(self, arg: int, /) -> None: ...
|
4596
|
+
|
4597
|
+
@property
|
4598
|
+
def y(self) -> int: ...
|
4599
|
+
|
4600
|
+
@y.setter
|
4601
|
+
def y(self, arg: int, /) -> None: ...
|
4602
|
+
|
4603
|
+
@property
|
4604
|
+
def z(self) -> int: ...
|
4605
|
+
|
4606
|
+
@z.setter
|
4607
|
+
def z(self, arg: int, /) -> None: ...
|
4608
|
+
|
4609
|
+
def __len__(self) -> int: ...
|
4610
|
+
|
4611
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
4612
|
+
|
4613
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
4614
|
+
|
4615
|
+
@property
|
4616
|
+
def shape(self) -> tuple: ...
|
4617
|
+
|
4618
|
+
@property
|
4619
|
+
def element_type(self) -> object: ...
|
4620
|
+
|
4621
|
+
def __repr__(self) -> str: ...
|
4622
|
+
|
4623
|
+
def __str__(self) -> str: ...
|
4624
|
+
|
4625
|
+
def __pos__(self) -> uint3: ...
|
4626
|
+
|
4627
|
+
def __neg__(self) -> uint3: ...
|
4628
|
+
|
4629
|
+
@overload
|
4630
|
+
def __add__(self, arg: uint3, /) -> uint3: ...
|
4631
|
+
|
4632
|
+
@overload
|
4633
|
+
def __add__(self, arg: int, /) -> uint3: ...
|
4634
|
+
|
4635
|
+
def __radd__(self, arg: int, /) -> uint3: ...
|
4636
|
+
|
4637
|
+
@overload
|
4638
|
+
def __sub__(self, arg: uint3, /) -> uint3: ...
|
4639
|
+
|
4640
|
+
@overload
|
4641
|
+
def __sub__(self, arg: int, /) -> uint3: ...
|
4642
|
+
|
4643
|
+
def __rsub__(self, arg: int, /) -> uint3: ...
|
4644
|
+
|
4645
|
+
@overload
|
4646
|
+
def __mul__(self, arg: uint3, /) -> uint3: ...
|
4647
|
+
|
4648
|
+
@overload
|
4649
|
+
def __mul__(self, arg: int, /) -> uint3: ...
|
4650
|
+
|
4651
|
+
def __rmul__(self, arg: int, /) -> uint3: ...
|
4652
|
+
|
4653
|
+
@overload
|
4654
|
+
def __truediv__(self, arg: uint3, /) -> uint3: ...
|
4655
|
+
|
4656
|
+
@overload
|
4657
|
+
def __truediv__(self, arg: int, /) -> uint3: ...
|
4658
|
+
|
4659
|
+
def __rtruediv__(self, arg: int, /) -> uint3: ...
|
4660
|
+
|
4661
|
+
@overload
|
4662
|
+
def __iadd__(self, arg: uint3, /) -> uint3: ...
|
4663
|
+
|
4664
|
+
@overload
|
4665
|
+
def __iadd__(self, arg: int, /) -> uint3: ...
|
4666
|
+
|
4667
|
+
@overload
|
4668
|
+
def __isub__(self, arg: uint3, /) -> uint3: ...
|
4669
|
+
|
4670
|
+
@overload
|
4671
|
+
def __isub__(self, arg: int, /) -> uint3: ...
|
4672
|
+
|
4673
|
+
@overload
|
4674
|
+
def __imul__(self, arg: uint3, /) -> uint3: ...
|
4675
|
+
|
4676
|
+
@overload
|
4677
|
+
def __imul__(self, arg: int, /) -> uint3: ...
|
4678
|
+
|
4679
|
+
@overload
|
4680
|
+
def __itruediv__(self, arg: uint3, /) -> uint3: ...
|
4681
|
+
|
4682
|
+
@overload
|
4683
|
+
def __itruediv__(self, arg: int, /) -> uint3: ...
|
4684
|
+
|
4685
|
+
@overload
|
4686
|
+
def __mod__(self, arg: uint3, /) -> uint3: ...
|
4687
|
+
|
4688
|
+
@overload
|
4689
|
+
def __mod__(self, arg: int, /) -> uint3: ...
|
4690
|
+
|
4691
|
+
def __rmod__(self, arg: int, /) -> uint3: ...
|
4692
|
+
|
4693
|
+
@overload
|
4694
|
+
def __lshift__(self, arg: uint3, /) -> uint3: ...
|
4695
|
+
|
4696
|
+
@overload
|
4697
|
+
def __lshift__(self, arg: int, /) -> uint3: ...
|
4698
|
+
|
4699
|
+
def __rlshift__(self, arg: int, /) -> uint3: ...
|
4700
|
+
|
4701
|
+
@overload
|
4702
|
+
def __rshift__(self, arg: uint3, /) -> uint3: ...
|
4703
|
+
|
4704
|
+
@overload
|
4705
|
+
def __rshift__(self, arg: int, /) -> uint3: ...
|
4706
|
+
|
4707
|
+
def __rrshift__(self, arg: int, /) -> uint3: ...
|
4708
|
+
|
4709
|
+
@overload
|
4710
|
+
def __or__(self, arg: uint3, /) -> uint3: ...
|
4711
|
+
|
4712
|
+
@overload
|
4713
|
+
def __or__(self, arg: int, /) -> uint3: ...
|
4714
|
+
|
4715
|
+
def __ror__(self, arg: int, /) -> uint3: ...
|
4716
|
+
|
4717
|
+
@overload
|
4718
|
+
def __and__(self, arg: uint3, /) -> uint3: ...
|
4719
|
+
|
4720
|
+
@overload
|
4721
|
+
def __and__(self, arg: int, /) -> uint3: ...
|
4722
|
+
|
4723
|
+
def __rand__(self, arg: int, /) -> uint3: ...
|
4724
|
+
|
4725
|
+
@overload
|
4726
|
+
def __xor__(self, arg: uint3, /) -> uint3: ...
|
4727
|
+
|
4728
|
+
@overload
|
4729
|
+
def __xor__(self, arg: int, /) -> uint3: ...
|
4730
|
+
|
4731
|
+
def __rxor__(self, arg: int, /) -> uint3: ...
|
4732
|
+
|
4733
|
+
@overload
|
4734
|
+
def __imod__(self, arg: uint3, /) -> uint3: ...
|
4735
|
+
|
4736
|
+
@overload
|
4737
|
+
def __imod__(self, arg: int, /) -> uint3: ...
|
4738
|
+
|
4739
|
+
@overload
|
4740
|
+
def __ilshift__(self, arg: uint3, /) -> uint3: ...
|
4741
|
+
|
4742
|
+
@overload
|
4743
|
+
def __ilshift__(self, arg: int, /) -> uint3: ...
|
4744
|
+
|
4745
|
+
@overload
|
4746
|
+
def __irshift__(self, arg: uint3, /) -> uint3: ...
|
4747
|
+
|
4748
|
+
@overload
|
4749
|
+
def __irshift__(self, arg: int, /) -> uint3: ...
|
4750
|
+
|
4751
|
+
@overload
|
4752
|
+
def __ior__(self, arg: uint3, /) -> uint3: ...
|
4753
|
+
|
4754
|
+
@overload
|
4755
|
+
def __ior__(self, arg: int, /) -> uint3: ...
|
4756
|
+
|
4757
|
+
@overload
|
4758
|
+
def __iand__(self, arg: uint3, /) -> uint3: ...
|
4759
|
+
|
4760
|
+
@overload
|
4761
|
+
def __iand__(self, arg: int, /) -> uint3: ...
|
4762
|
+
|
4763
|
+
@overload
|
4764
|
+
def __ixor__(self, arg: uint3, /) -> uint3: ...
|
4765
|
+
|
4766
|
+
@overload
|
4767
|
+
def __ixor__(self, arg: int, /) -> uint3: ...
|
4768
|
+
|
4769
|
+
@overload
|
4770
|
+
def __eq__(self, arg: uint3, /) -> bool3: ...
|
4771
|
+
|
4772
|
+
@overload
|
4773
|
+
def __eq__(self, arg: int, /) -> bool3: ...
|
4774
|
+
|
4775
|
+
@overload
|
4776
|
+
def __eq__(self, arg: int, /) -> bool3: ...
|
4777
|
+
|
4778
|
+
@overload
|
4779
|
+
def __ne__(self, arg: uint3, /) -> bool3: ...
|
4780
|
+
|
4781
|
+
@overload
|
4782
|
+
def __ne__(self, arg: int, /) -> bool3: ...
|
4783
|
+
|
4784
|
+
@overload
|
4785
|
+
def __ne__(self, arg: int, /) -> bool3: ...
|
4786
|
+
|
4787
|
+
@overload
|
4788
|
+
def __lt__(self, arg: uint3, /) -> bool3: ...
|
4789
|
+
|
4790
|
+
@overload
|
4791
|
+
def __lt__(self, arg: int, /) -> bool3: ...
|
4792
|
+
|
4793
|
+
@overload
|
4794
|
+
def __lt__(self, arg: int, /) -> bool3: ...
|
4795
|
+
|
4796
|
+
@overload
|
4797
|
+
def __gt__(self, arg: int, /) -> bool3: ...
|
4798
|
+
|
4799
|
+
@overload
|
4800
|
+
def __gt__(self, arg: uint3, /) -> bool3: ...
|
4801
|
+
|
4802
|
+
@overload
|
4803
|
+
def __gt__(self, arg: int, /) -> bool3: ...
|
4804
|
+
|
4805
|
+
@overload
|
4806
|
+
def __le__(self, arg: uint3, /) -> bool3: ...
|
4807
|
+
|
4808
|
+
@overload
|
4809
|
+
def __le__(self, arg: int, /) -> bool3: ...
|
4810
|
+
|
4811
|
+
@overload
|
4812
|
+
def __le__(self, arg: int, /) -> bool3: ...
|
4813
|
+
|
4814
|
+
@overload
|
4815
|
+
def __ge__(self, arg: int, /) -> bool3: ...
|
4816
|
+
|
4817
|
+
@overload
|
4818
|
+
def __ge__(self, arg: uint3, /) -> bool3: ...
|
4819
|
+
|
4820
|
+
@overload
|
4821
|
+
def __ge__(self, arg: int, /) -> bool3: ...
|
4822
|
+
|
4823
|
+
class uint4:
|
4824
|
+
@overload
|
4825
|
+
def __init__(self) -> None: ...
|
4826
|
+
|
4827
|
+
@overload
|
4828
|
+
def __init__(self, scalar: int) -> None: ...
|
4829
|
+
|
4830
|
+
@overload
|
4831
|
+
def __init__(self, x: int, y: int, z: int, w: int) -> None: ...
|
4832
|
+
|
4833
|
+
@overload
|
4834
|
+
def __init__(self, xy: uint2, zw: uint2) -> None: ...
|
4835
|
+
|
4836
|
+
@overload
|
4837
|
+
def __init__(self, xyz: uint3, w: int) -> None: ...
|
4838
|
+
|
4839
|
+
@overload
|
4840
|
+
def __init__(self, x: int, yzw: uint3) -> None: ...
|
4841
|
+
|
4842
|
+
@overload
|
4843
|
+
def __init__(self, a: Sequence[int]) -> None: ...
|
4844
|
+
|
4845
|
+
@property
|
4846
|
+
def x(self) -> int: ...
|
4847
|
+
|
4848
|
+
@x.setter
|
4849
|
+
def x(self, arg: int, /) -> None: ...
|
4850
|
+
|
4851
|
+
@property
|
4852
|
+
def y(self) -> int: ...
|
4853
|
+
|
4854
|
+
@y.setter
|
4855
|
+
def y(self, arg: int, /) -> None: ...
|
4856
|
+
|
4857
|
+
@property
|
4858
|
+
def z(self) -> int: ...
|
4859
|
+
|
4860
|
+
@z.setter
|
4861
|
+
def z(self, arg: int, /) -> None: ...
|
4862
|
+
|
4863
|
+
@property
|
4864
|
+
def w(self) -> int: ...
|
4865
|
+
|
4866
|
+
@w.setter
|
4867
|
+
def w(self, arg: int, /) -> None: ...
|
4868
|
+
|
4869
|
+
def __len__(self) -> int: ...
|
4870
|
+
|
4871
|
+
def __getitem__(self, arg: int, /) -> int: ...
|
4872
|
+
|
4873
|
+
def __setitem__(self, arg0: int, arg1: int, /) -> None: ...
|
4874
|
+
|
4875
|
+
@property
|
4876
|
+
def shape(self) -> tuple: ...
|
4877
|
+
|
4878
|
+
@property
|
4879
|
+
def element_type(self) -> object: ...
|
4880
|
+
|
4881
|
+
def __repr__(self) -> str: ...
|
4882
|
+
|
4883
|
+
def __str__(self) -> str: ...
|
4884
|
+
|
4885
|
+
def __pos__(self) -> uint4: ...
|
4886
|
+
|
4887
|
+
def __neg__(self) -> uint4: ...
|
4888
|
+
|
4889
|
+
@overload
|
4890
|
+
def __add__(self, arg: uint4, /) -> uint4: ...
|
4891
|
+
|
4892
|
+
@overload
|
4893
|
+
def __add__(self, arg: int, /) -> uint4: ...
|
4894
|
+
|
4895
|
+
def __radd__(self, arg: int, /) -> uint4: ...
|
4896
|
+
|
4897
|
+
@overload
|
4898
|
+
def __sub__(self, arg: uint4, /) -> uint4: ...
|
4899
|
+
|
4900
|
+
@overload
|
4901
|
+
def __sub__(self, arg: int, /) -> uint4: ...
|
4902
|
+
|
4903
|
+
def __rsub__(self, arg: int, /) -> uint4: ...
|
4904
|
+
|
4905
|
+
@overload
|
4906
|
+
def __mul__(self, arg: uint4, /) -> uint4: ...
|
4907
|
+
|
4908
|
+
@overload
|
4909
|
+
def __mul__(self, arg: int, /) -> uint4: ...
|
4910
|
+
|
4911
|
+
def __rmul__(self, arg: int, /) -> uint4: ...
|
4912
|
+
|
4913
|
+
@overload
|
4914
|
+
def __truediv__(self, arg: uint4, /) -> uint4: ...
|
4915
|
+
|
4916
|
+
@overload
|
4917
|
+
def __truediv__(self, arg: int, /) -> uint4: ...
|
4918
|
+
|
4919
|
+
def __rtruediv__(self, arg: int, /) -> uint4: ...
|
4920
|
+
|
4921
|
+
@overload
|
4922
|
+
def __iadd__(self, arg: uint4, /) -> uint4: ...
|
4923
|
+
|
4924
|
+
@overload
|
4925
|
+
def __iadd__(self, arg: int, /) -> uint4: ...
|
4926
|
+
|
4927
|
+
@overload
|
4928
|
+
def __isub__(self, arg: uint4, /) -> uint4: ...
|
4929
|
+
|
4930
|
+
@overload
|
4931
|
+
def __isub__(self, arg: int, /) -> uint4: ...
|
4932
|
+
|
4933
|
+
@overload
|
4934
|
+
def __imul__(self, arg: uint4, /) -> uint4: ...
|
4935
|
+
|
4936
|
+
@overload
|
4937
|
+
def __imul__(self, arg: int, /) -> uint4: ...
|
4938
|
+
|
4939
|
+
@overload
|
4940
|
+
def __itruediv__(self, arg: uint4, /) -> uint4: ...
|
4941
|
+
|
4942
|
+
@overload
|
4943
|
+
def __itruediv__(self, arg: int, /) -> uint4: ...
|
4944
|
+
|
4945
|
+
@overload
|
4946
|
+
def __mod__(self, arg: uint4, /) -> uint4: ...
|
4947
|
+
|
4948
|
+
@overload
|
4949
|
+
def __mod__(self, arg: int, /) -> uint4: ...
|
4950
|
+
|
4951
|
+
def __rmod__(self, arg: int, /) -> uint4: ...
|
4952
|
+
|
4953
|
+
@overload
|
4954
|
+
def __lshift__(self, arg: uint4, /) -> uint4: ...
|
4955
|
+
|
4956
|
+
@overload
|
4957
|
+
def __lshift__(self, arg: int, /) -> uint4: ...
|
4958
|
+
|
4959
|
+
def __rlshift__(self, arg: int, /) -> uint4: ...
|
4960
|
+
|
4961
|
+
@overload
|
4962
|
+
def __rshift__(self, arg: uint4, /) -> uint4: ...
|
4963
|
+
|
4964
|
+
@overload
|
4965
|
+
def __rshift__(self, arg: int, /) -> uint4: ...
|
4966
|
+
|
4967
|
+
def __rrshift__(self, arg: int, /) -> uint4: ...
|
4968
|
+
|
4969
|
+
@overload
|
4970
|
+
def __or__(self, arg: uint4, /) -> uint4: ...
|
4971
|
+
|
4972
|
+
@overload
|
4973
|
+
def __or__(self, arg: int, /) -> uint4: ...
|
4974
|
+
|
4975
|
+
def __ror__(self, arg: int, /) -> uint4: ...
|
4976
|
+
|
4977
|
+
@overload
|
4978
|
+
def __and__(self, arg: uint4, /) -> uint4: ...
|
4979
|
+
|
4980
|
+
@overload
|
4981
|
+
def __and__(self, arg: int, /) -> uint4: ...
|
4982
|
+
|
4983
|
+
def __rand__(self, arg: int, /) -> uint4: ...
|
4984
|
+
|
4985
|
+
@overload
|
4986
|
+
def __xor__(self, arg: uint4, /) -> uint4: ...
|
4987
|
+
|
4988
|
+
@overload
|
4989
|
+
def __xor__(self, arg: int, /) -> uint4: ...
|
4990
|
+
|
4991
|
+
def __rxor__(self, arg: int, /) -> uint4: ...
|
4992
|
+
|
4993
|
+
@overload
|
4994
|
+
def __imod__(self, arg: uint4, /) -> uint4: ...
|
4995
|
+
|
4996
|
+
@overload
|
4997
|
+
def __imod__(self, arg: int, /) -> uint4: ...
|
4998
|
+
|
4999
|
+
@overload
|
5000
|
+
def __ilshift__(self, arg: uint4, /) -> uint4: ...
|
5001
|
+
|
5002
|
+
@overload
|
5003
|
+
def __ilshift__(self, arg: int, /) -> uint4: ...
|
5004
|
+
|
5005
|
+
@overload
|
5006
|
+
def __irshift__(self, arg: uint4, /) -> uint4: ...
|
5007
|
+
|
5008
|
+
@overload
|
5009
|
+
def __irshift__(self, arg: int, /) -> uint4: ...
|
5010
|
+
|
5011
|
+
@overload
|
5012
|
+
def __ior__(self, arg: uint4, /) -> uint4: ...
|
5013
|
+
|
5014
|
+
@overload
|
5015
|
+
def __ior__(self, arg: int, /) -> uint4: ...
|
5016
|
+
|
5017
|
+
@overload
|
5018
|
+
def __iand__(self, arg: uint4, /) -> uint4: ...
|
5019
|
+
|
5020
|
+
@overload
|
5021
|
+
def __iand__(self, arg: int, /) -> uint4: ...
|
5022
|
+
|
5023
|
+
@overload
|
5024
|
+
def __ixor__(self, arg: uint4, /) -> uint4: ...
|
5025
|
+
|
5026
|
+
@overload
|
5027
|
+
def __ixor__(self, arg: int, /) -> uint4: ...
|
5028
|
+
|
5029
|
+
@overload
|
5030
|
+
def __eq__(self, arg: uint4, /) -> bool4: ...
|
5031
|
+
|
5032
|
+
@overload
|
5033
|
+
def __eq__(self, arg: int, /) -> bool4: ...
|
5034
|
+
|
5035
|
+
@overload
|
5036
|
+
def __eq__(self, arg: int, /) -> bool4: ...
|
5037
|
+
|
5038
|
+
@overload
|
5039
|
+
def __ne__(self, arg: uint4, /) -> bool4: ...
|
5040
|
+
|
5041
|
+
@overload
|
5042
|
+
def __ne__(self, arg: int, /) -> bool4: ...
|
5043
|
+
|
5044
|
+
@overload
|
5045
|
+
def __ne__(self, arg: int, /) -> bool4: ...
|
5046
|
+
|
5047
|
+
@overload
|
5048
|
+
def __lt__(self, arg: uint4, /) -> bool4: ...
|
5049
|
+
|
5050
|
+
@overload
|
5051
|
+
def __lt__(self, arg: int, /) -> bool4: ...
|
5052
|
+
|
5053
|
+
@overload
|
5054
|
+
def __lt__(self, arg: int, /) -> bool4: ...
|
5055
|
+
|
5056
|
+
@overload
|
5057
|
+
def __gt__(self, arg: int, /) -> bool4: ...
|
5058
|
+
|
5059
|
+
@overload
|
5060
|
+
def __gt__(self, arg: uint4, /) -> bool4: ...
|
5061
|
+
|
5062
|
+
@overload
|
5063
|
+
def __gt__(self, arg: int, /) -> bool4: ...
|
5064
|
+
|
5065
|
+
@overload
|
5066
|
+
def __le__(self, arg: uint4, /) -> bool4: ...
|
5067
|
+
|
5068
|
+
@overload
|
5069
|
+
def __le__(self, arg: int, /) -> bool4: ...
|
5070
|
+
|
5071
|
+
@overload
|
5072
|
+
def __le__(self, arg: int, /) -> bool4: ...
|
5073
|
+
|
5074
|
+
@overload
|
5075
|
+
def __ge__(self, arg: int, /) -> bool4: ...
|
5076
|
+
|
5077
|
+
@overload
|
5078
|
+
def __ge__(self, arg: uint4, /) -> bool4: ...
|
5079
|
+
|
5080
|
+
@overload
|
5081
|
+
def __ge__(self, arg: int, /) -> bool4: ...
|
5082
|
+
|
5083
|
+
def yaw(x: quatf) -> float: ...
|