fake-bpy-module 20240508__py3-none-any.whl → 20240509__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of fake-bpy-module might be problematic. Click here for more details.
- bpy/ops/action/__init__.pyi +152 -76
- bpy/ops/anim/__init__.pyi +212 -106
- bpy/ops/armature/__init__.pyi +192 -96
- bpy/ops/asset/__init__.pyi +64 -32
- bpy/ops/boid/__init__.pyi +32 -16
- bpy/ops/brush/__init__.pyi +36 -18
- bpy/ops/buttons/__init__.pyi +24 -12
- bpy/ops/cachefile/__init__.pyi +20 -10
- bpy/ops/camera/__init__.pyi +8 -4
- bpy/ops/clip/__init__.pyi +368 -184
- bpy/ops/cloth/__init__.pyi +4 -2
- bpy/ops/collection/__init__.pyi +36 -18
- bpy/ops/console/__init__.pyi +84 -42
- bpy/ops/constraint/__init__.pyi +72 -36
- bpy/ops/curve/__init__.pyi +204 -102
- bpy/ops/curves/__init__.pyi +108 -54
- bpy/ops/cycles/__init__.pyi +12 -6
- bpy/ops/dpaint/__init__.pyi +20 -10
- bpy/ops/ed/__init__.pyi +48 -24
- bpy/ops/export_anim/__init__.pyi +4 -2
- bpy/ops/export_mesh/__init__.pyi +4 -2
- bpy/ops/export_scene/__init__.pyi +16 -10
- bpy/ops/file/__init__.pyi +160 -80
- bpy/ops/fluid/__init__.pyi +56 -28
- bpy/ops/font/__init__.pyi +92 -46
- bpy/ops/geometry/__init__.pyi +40 -20
- bpy/ops/gizmogroup/__init__.pyi +8 -4
- bpy/ops/gpencil/__init__.pyi +600 -300
- bpy/ops/graph/__init__.pyi +260 -130
- bpy/ops/grease_pencil/__init__.pyi +268 -134
- bpy/ops/image/__init__.pyi +188 -94
- bpy/ops/import_anim/__init__.pyi +4 -2
- bpy/ops/import_curve/__init__.pyi +4 -2
- bpy/ops/import_mesh/__init__.pyi +4 -2
- bpy/ops/import_scene/__init__.pyi +12 -6
- bpy/ops/info/__init__.pyi +28 -14
- bpy/ops/lattice/__init__.pyi +32 -16
- bpy/ops/marker/__init__.pyi +44 -22
- bpy/ops/mask/__init__.pyi +156 -78
- bpy/ops/material/__init__.pyi +12 -6
- bpy/ops/mball/__init__.pyi +32 -16
- bpy/ops/mesh/__init__.pyi +652 -326
- bpy/ops/nla/__init__.pyi +159 -81
- bpy/ops/node/__init__.pyi +404 -202
- bpy/ops/object/__init__.pyi +1002 -490
- bpy/ops/outliner/__init__.pyi +276 -138
- bpy/ops/paint/__init__.pyi +212 -106
- bpy/ops/paintcurve/__init__.pyi +32 -16
- bpy/ops/palette/__init__.pyi +28 -14
- bpy/ops/particle/__init__.pyi +144 -72
- bpy/ops/pose/__init__.pyi +156 -78
- bpy/ops/poselib/__init__.pyi +36 -18
- bpy/ops/preferences/__init__.pyi +152 -76
- bpy/ops/ptcache/__init__.pyi +28 -14
- bpy/ops/render/__init__.pyi +48 -24
- bpy/ops/rigidbody/__init__.pyi +52 -26
- bpy/ops/scene/__init__.pyi +156 -78
- bpy/ops/screen/__init__.pyi +156 -78
- bpy/ops/script/__init__.pyi +12 -6
- bpy/ops/sculpt/__init__.pyi +134 -68
- bpy/ops/sculpt_curves/__init__.pyi +16 -8
- bpy/ops/sequencer/__init__.pyi +340 -170
- bpy/ops/sound/__init__.pyi +28 -14
- bpy/ops/spreadsheet/__init__.pyi +16 -8
- bpy/ops/surface/__init__.pyi +24 -12
- bpy/ops/text/__init__.pyi +172 -86
- bpy/ops/text_editor/__init__.pyi +4 -2
- bpy/ops/texture/__init__.pyi +16 -8
- bpy/ops/transform/__init__.pyi +108 -54
- bpy/ops/ui/__init__.pyi +132 -66
- bpy/ops/uilist/__init__.pyi +12 -6
- bpy/ops/uv/__init__.pyi +196 -98
- bpy/ops/view2d/__init__.pyi +56 -28
- bpy/ops/view3d/__init__.pyi +268 -134
- bpy/ops/wm/__init__.pyi +493 -224
- bpy/ops/workspace/__init__.pyi +28 -14
- bpy/ops/world/__init__.pyi +4 -2
- bpy/types/__init__.pyi +396 -28
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/RECORD +83 -83
- mathutils/__init__.pyi +20 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240508.dist-info → fake_bpy_module-20240509.dist-info}/top_level.txt +0 -0
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def bake_animation(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Update the audio animation cache
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,7 +20,9 @@ def bake_animation(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def mixdown(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -53,7 +57,7 @@ def mixdown(
|
|
|
53
57
|
):
|
|
54
58
|
"""Mix the scene's audio to a sound file
|
|
55
59
|
|
|
56
|
-
:type override_context: typing.Optional[typing.Union[
|
|
60
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
57
61
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
58
62
|
:type undo: typing.Optional[bool]
|
|
59
63
|
:param filepath: File Path, Path to file
|
|
@@ -191,7 +195,9 @@ def mixdown(
|
|
|
191
195
|
...
|
|
192
196
|
|
|
193
197
|
def open(
|
|
194
|
-
override_context: typing.Optional[
|
|
198
|
+
override_context: typing.Optional[
|
|
199
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
200
|
+
] = None,
|
|
195
201
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
196
202
|
undo: typing.Optional[bool] = None,
|
|
197
203
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -225,7 +231,7 @@ def open(
|
|
|
225
231
|
):
|
|
226
232
|
"""Load a sound file
|
|
227
233
|
|
|
228
|
-
:type override_context: typing.Optional[typing.Union[
|
|
234
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
229
235
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
230
236
|
:type undo: typing.Optional[bool]
|
|
231
237
|
:param filepath: File Path, Path to file
|
|
@@ -301,7 +307,9 @@ def open(
|
|
|
301
307
|
...
|
|
302
308
|
|
|
303
309
|
def open_mono(
|
|
304
|
-
override_context: typing.Optional[
|
|
310
|
+
override_context: typing.Optional[
|
|
311
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
312
|
+
] = None,
|
|
305
313
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
306
314
|
undo: typing.Optional[bool] = None,
|
|
307
315
|
filepath: typing.Union[str, typing.Any] = "",
|
|
@@ -335,7 +343,7 @@ def open_mono(
|
|
|
335
343
|
):
|
|
336
344
|
"""Load a sound file as mono
|
|
337
345
|
|
|
338
|
-
:type override_context: typing.Optional[typing.Union[
|
|
346
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
339
347
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
340
348
|
:type undo: typing.Optional[bool]
|
|
341
349
|
:param filepath: File Path, Path to file
|
|
@@ -411,13 +419,15 @@ def open_mono(
|
|
|
411
419
|
...
|
|
412
420
|
|
|
413
421
|
def pack(
|
|
414
|
-
override_context: typing.Optional[
|
|
422
|
+
override_context: typing.Optional[
|
|
423
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
424
|
+
] = None,
|
|
415
425
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
416
426
|
undo: typing.Optional[bool] = None,
|
|
417
427
|
):
|
|
418
428
|
"""Pack the sound into the current blend file
|
|
419
429
|
|
|
420
|
-
:type override_context: typing.Optional[typing.Union[
|
|
430
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
421
431
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
422
432
|
:type undo: typing.Optional[bool]
|
|
423
433
|
"""
|
|
@@ -425,7 +435,9 @@ def pack(
|
|
|
425
435
|
...
|
|
426
436
|
|
|
427
437
|
def unpack(
|
|
428
|
-
override_context: typing.Optional[
|
|
438
|
+
override_context: typing.Optional[
|
|
439
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
440
|
+
] = None,
|
|
429
441
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
430
442
|
undo: typing.Optional[bool] = None,
|
|
431
443
|
method: typing.Optional[typing.Union[str, int]] = "USE_LOCAL",
|
|
@@ -433,7 +445,7 @@ def unpack(
|
|
|
433
445
|
):
|
|
434
446
|
"""Unpack the sound to the samples filename
|
|
435
447
|
|
|
436
|
-
:type override_context: typing.Optional[typing.Union[
|
|
448
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
437
449
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
438
450
|
:type undo: typing.Optional[bool]
|
|
439
451
|
:param method: Method, How to unpack
|
|
@@ -445,13 +457,15 @@ def unpack(
|
|
|
445
457
|
...
|
|
446
458
|
|
|
447
459
|
def update_animation_flags(
|
|
448
|
-
override_context: typing.Optional[
|
|
460
|
+
override_context: typing.Optional[
|
|
461
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
462
|
+
] = None,
|
|
449
463
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
450
464
|
undo: typing.Optional[bool] = None,
|
|
451
465
|
):
|
|
452
466
|
"""Update animation flags
|
|
453
467
|
|
|
454
|
-
:type override_context: typing.Optional[typing.Union[
|
|
468
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
455
469
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
456
470
|
:type undo: typing.Optional[bool]
|
|
457
471
|
"""
|
bpy/ops/spreadsheet/__init__.pyi
CHANGED
|
@@ -4,13 +4,15 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def add_row_filter_rule(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
):
|
|
11
13
|
"""Add a filter to remove rows from the displayed data
|
|
12
14
|
|
|
13
|
-
:type override_context: typing.Optional[typing.Union[
|
|
15
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
14
16
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
15
17
|
:type undo: typing.Optional[bool]
|
|
16
18
|
"""
|
|
@@ -18,7 +20,9 @@ def add_row_filter_rule(
|
|
|
18
20
|
...
|
|
19
21
|
|
|
20
22
|
def change_spreadsheet_data_source(
|
|
21
|
-
override_context: typing.Optional[
|
|
23
|
+
override_context: typing.Optional[
|
|
24
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
25
|
+
] = None,
|
|
22
26
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
23
27
|
undo: typing.Optional[bool] = None,
|
|
24
28
|
component_type: typing.Optional[typing.Any] = 0,
|
|
@@ -26,7 +30,7 @@ def change_spreadsheet_data_source(
|
|
|
26
30
|
):
|
|
27
31
|
"""Change visible data source in the spreadsheet
|
|
28
32
|
|
|
29
|
-
:type override_context: typing.Optional[typing.Union[
|
|
33
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
30
34
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
31
35
|
:type undo: typing.Optional[bool]
|
|
32
36
|
:param component_type: Component Type
|
|
@@ -38,14 +42,16 @@ def change_spreadsheet_data_source(
|
|
|
38
42
|
...
|
|
39
43
|
|
|
40
44
|
def remove_row_filter_rule(
|
|
41
|
-
override_context: typing.Optional[
|
|
45
|
+
override_context: typing.Optional[
|
|
46
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
47
|
+
] = None,
|
|
42
48
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
43
49
|
undo: typing.Optional[bool] = None,
|
|
44
50
|
index: typing.Optional[typing.Any] = 0,
|
|
45
51
|
):
|
|
46
52
|
"""Remove a row filter from the rules
|
|
47
53
|
|
|
48
|
-
:type override_context: typing.Optional[typing.Union[
|
|
54
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
49
55
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
50
56
|
:type undo: typing.Optional[bool]
|
|
51
57
|
:param index: Index
|
|
@@ -55,13 +61,15 @@ def remove_row_filter_rule(
|
|
|
55
61
|
...
|
|
56
62
|
|
|
57
63
|
def toggle_pin(
|
|
58
|
-
override_context: typing.Optional[
|
|
64
|
+
override_context: typing.Optional[
|
|
65
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
66
|
+
] = None,
|
|
59
67
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
60
68
|
undo: typing.Optional[bool] = None,
|
|
61
69
|
):
|
|
62
70
|
"""Turn on or off pinning
|
|
63
71
|
|
|
64
|
-
:type override_context: typing.Optional[typing.Union[
|
|
72
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
65
73
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
66
74
|
:type undo: typing.Optional[bool]
|
|
67
75
|
"""
|
bpy/ops/surface/__init__.pyi
CHANGED
|
@@ -4,7 +4,9 @@ import bpy.types
|
|
|
4
4
|
GenericType = typing.TypeVar("GenericType")
|
|
5
5
|
|
|
6
6
|
def primitive_nurbs_surface_circle_add(
|
|
7
|
-
override_context: typing.Optional[
|
|
7
|
+
override_context: typing.Optional[
|
|
8
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
9
|
+
] = None,
|
|
8
10
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
9
11
|
undo: typing.Optional[bool] = None,
|
|
10
12
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -16,7 +18,7 @@ def primitive_nurbs_surface_circle_add(
|
|
|
16
18
|
):
|
|
17
19
|
"""Construct a Nurbs surface Circle
|
|
18
20
|
|
|
19
|
-
:type override_context: typing.Optional[typing.Union[
|
|
21
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
20
22
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
21
23
|
:type undo: typing.Optional[bool]
|
|
22
24
|
:param radius: Radius
|
|
@@ -45,7 +47,9 @@ def primitive_nurbs_surface_circle_add(
|
|
|
45
47
|
...
|
|
46
48
|
|
|
47
49
|
def primitive_nurbs_surface_curve_add(
|
|
48
|
-
override_context: typing.Optional[
|
|
50
|
+
override_context: typing.Optional[
|
|
51
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
52
|
+
] = None,
|
|
49
53
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
50
54
|
undo: typing.Optional[bool] = None,
|
|
51
55
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -57,7 +61,7 @@ def primitive_nurbs_surface_curve_add(
|
|
|
57
61
|
):
|
|
58
62
|
"""Construct a Nurbs surface Curve
|
|
59
63
|
|
|
60
|
-
:type override_context: typing.Optional[typing.Union[
|
|
64
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
61
65
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
62
66
|
:type undo: typing.Optional[bool]
|
|
63
67
|
:param radius: Radius
|
|
@@ -86,7 +90,9 @@ def primitive_nurbs_surface_curve_add(
|
|
|
86
90
|
...
|
|
87
91
|
|
|
88
92
|
def primitive_nurbs_surface_cylinder_add(
|
|
89
|
-
override_context: typing.Optional[
|
|
93
|
+
override_context: typing.Optional[
|
|
94
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
95
|
+
] = None,
|
|
90
96
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
91
97
|
undo: typing.Optional[bool] = None,
|
|
92
98
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -98,7 +104,7 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
98
104
|
):
|
|
99
105
|
"""Construct a Nurbs surface Cylinder
|
|
100
106
|
|
|
101
|
-
:type override_context: typing.Optional[typing.Union[
|
|
107
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
102
108
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
103
109
|
:type undo: typing.Optional[bool]
|
|
104
110
|
:param radius: Radius
|
|
@@ -127,7 +133,9 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
127
133
|
...
|
|
128
134
|
|
|
129
135
|
def primitive_nurbs_surface_sphere_add(
|
|
130
|
-
override_context: typing.Optional[
|
|
136
|
+
override_context: typing.Optional[
|
|
137
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
138
|
+
] = None,
|
|
131
139
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
132
140
|
undo: typing.Optional[bool] = None,
|
|
133
141
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -139,7 +147,7 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
139
147
|
):
|
|
140
148
|
"""Construct a Nurbs surface Sphere
|
|
141
149
|
|
|
142
|
-
:type override_context: typing.Optional[typing.Union[
|
|
150
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
143
151
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
144
152
|
:type undo: typing.Optional[bool]
|
|
145
153
|
:param radius: Radius
|
|
@@ -168,7 +176,9 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
168
176
|
...
|
|
169
177
|
|
|
170
178
|
def primitive_nurbs_surface_surface_add(
|
|
171
|
-
override_context: typing.Optional[
|
|
179
|
+
override_context: typing.Optional[
|
|
180
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
181
|
+
] = None,
|
|
172
182
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
173
183
|
undo: typing.Optional[bool] = None,
|
|
174
184
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -180,7 +190,7 @@ def primitive_nurbs_surface_surface_add(
|
|
|
180
190
|
):
|
|
181
191
|
"""Construct a Nurbs surface Patch
|
|
182
192
|
|
|
183
|
-
:type override_context: typing.Optional[typing.Union[
|
|
193
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
184
194
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
185
195
|
:type undo: typing.Optional[bool]
|
|
186
196
|
:param radius: Radius
|
|
@@ -209,7 +219,9 @@ def primitive_nurbs_surface_surface_add(
|
|
|
209
219
|
...
|
|
210
220
|
|
|
211
221
|
def primitive_nurbs_surface_torus_add(
|
|
212
|
-
override_context: typing.Optional[
|
|
222
|
+
override_context: typing.Optional[
|
|
223
|
+
typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]
|
|
224
|
+
] = None,
|
|
213
225
|
execution_context: typing.Optional[typing.Union[str, int]] = None,
|
|
214
226
|
undo: typing.Optional[bool] = None,
|
|
215
227
|
radius: typing.Optional[typing.Any] = 1.0,
|
|
@@ -221,7 +233,7 @@ def primitive_nurbs_surface_torus_add(
|
|
|
221
233
|
):
|
|
222
234
|
"""Construct a Nurbs surface Torus
|
|
223
235
|
|
|
224
|
-
:type override_context: typing.Optional[typing.Union[
|
|
236
|
+
:type override_context: typing.Optional[typing.Union[typing.Dict[str, typing.Any], bpy.types.Context]]
|
|
225
237
|
:type execution_context: typing.Optional[typing.Union[str, int]]
|
|
226
238
|
:type undo: typing.Optional[bool]
|
|
227
239
|
:param radius: Radius
|