fake-bge-module 20250103__py3-none-any.whl → 20250201__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.
- addon_utils/__init__.pyi +11 -6
- aud/__init__.pyi +4 -0
- bge/types/__init__.pyi +66 -27
- bgl/__init__.pyi +2 -2
- bgui/image/__init__.pyi +3 -1
- bgui/system/__init__.pyi +12 -4
- bl_console_utils/autocomplete/complete_calltip/__init__.pyi +5 -2
- bl_console_utils/autocomplete/complete_import/__init__.pyi +6 -3
- bl_console_utils/autocomplete/complete_namespace/__init__.pyi +2 -1
- bl_console_utils/autocomplete/intellisense/__init__.pyi +8 -2
- bl_operators/node/__init__.pyi +78 -0
- bl_ui/anim/__init__.pyi +6 -0
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/node_add_menu_shader/__init__.pyi +0 -1
- bl_ui/node_add_menu_texture/__init__.pyi +1 -0
- bl_ui/properties_data_camera/__init__.pyi +0 -2
- bl_ui/properties_mask_common/__init__.pyi +17 -0
- bl_ui/properties_material_gpencil/__init__.pyi +29 -0
- bl_ui/properties_scene/__init__.pyi +6 -0
- bl_ui/properties_view_layer/__init__.pyi +1 -0
- bl_ui/space_clip/__init__.pyi +53 -0
- bl_ui/space_graph/__init__.pyi +2 -0
- bl_ui/space_image/__init__.pyi +25 -0
- bl_ui/space_node/__init__.pyi +0 -1
- bl_ui/space_sequencer/__init__.pyi +2 -1
- blf/__init__.pyi +6 -3
- bmesh/ops/__init__.pyi +111 -54
- bmesh/types/__init__.pyi +134 -46
- bmesh/utils/__init__.pyi +17 -5
- bpy/__init__.pyi +1 -2
- bpy/_typing/__init__.pyi +4 -0
- bpy/{typing → _typing/rna_enums}/__init__.pyi +36 -36
- bpy/app/__init__.pyi +13 -5
- bpy/app/handlers/__init__.pyi +4 -2
- bpy/app/icons/__init__.pyi +6 -2
- bpy/app/translations/__init__.pyi +17 -8
- bpy/msgbus/__init__.pyi +14 -2
- bpy/ops/action/__init__.pyi +51 -151
- bpy/ops/anim/__init__.pyi +61 -179
- bpy/ops/armature/__init__.pyi +48 -147
- bpy/ops/asset/__init__.pyi +16 -71
- bpy/ops/boid/__init__.pyi +11 -44
- bpy/ops/brush/__init__.pyi +16 -42
- bpy/ops/buttons/__init__.pyi +6 -29
- bpy/ops/cachefile/__init__.pyi +5 -19
- bpy/ops/camera/__init__.pyi +2 -5
- bpy/ops/clip/__init__.pyi +95 -293
- bpy/ops/cloth/__init__.pyi +1 -3
- bpy/ops/collection/__init__.pyi +10 -26
- bpy/ops/console/__init__.pyi +21 -79
- bpy/ops/constraint/__init__.pyi +18 -45
- bpy/ops/curve/__init__.pyi +57 -186
- bpy/ops/curves/__init__.pyi +37 -109
- bpy/ops/cycles/__init__.pyi +3 -9
- bpy/ops/dpaint/__init__.pyi +8 -22
- bpy/ops/ed/__init__.pyi +20 -52
- bpy/ops/export_anim/__init__.pyi +1 -3
- bpy/ops/export_scene/__init__.pyi +55 -32
- bpy/ops/extensions/__init__.pyi +34 -110
- bpy/ops/file/__init__.pyi +40 -167
- bpy/ops/fluid/__init__.pyi +14 -77
- bpy/ops/font/__init__.pyi +23 -85
- bpy/ops/geometry/__init__.pyi +29 -46
- bpy/ops/gizmogroup/__init__.pyi +2 -9
- bpy/ops/gpencil/__init__.pyi +8 -32
- bpy/ops/graph/__init__.pyi +82 -201
- bpy/ops/grease_pencil/__init__.pyi +125 -324
- bpy/ops/image/__init__.pyi +61 -163
- bpy/ops/import_anim/__init__.pyi +1 -3
- bpy/ops/import_curve/__init__.pyi +1 -3
- bpy/ops/import_scene/__init__.pyi +4 -6
- bpy/ops/info/__init__.pyi +7 -29
- bpy/ops/lattice/__init__.pyi +11 -32
- bpy/ops/logic/__init__.pyi +26 -65
- bpy/ops/marker/__init__.pyi +11 -31
- bpy/ops/mask/__init__.pyi +39 -132
- bpy/ops/material/__init__.pyi +3 -19
- bpy/ops/mball/__init__.pyi +8 -19
- bpy/ops/mesh/__init__.pyi +223 -470
- bpy/ops/nla/__init__.pyi +42 -150
- bpy/ops/node/__init__.pyi +169 -393
- bpy/ops/object/__init__.pyi +320 -749
- bpy/ops/outliner/__init__.pyi +76 -268
- bpy/ops/paint/__init__.pyi +67 -147
- bpy/ops/paintcurve/__init__.pyi +8 -33
- bpy/ops/palette/__init__.pyi +7 -27
- bpy/ops/particle/__init__.pyi +39 -134
- bpy/ops/pose/__init__.pyi +64 -182
- bpy/ops/poselib/__init__.pyi +9 -33
- bpy/ops/preferences/__init__.pyi +35 -94
- bpy/ops/ptcache/__init__.pyi +7 -33
- bpy/ops/render/__init__.pyi +13 -37
- bpy/ops/rigidbody/__init__.pyi +22 -54
- bpy/ops/scene/__init__.pyi +47 -130
- bpy/ops/screen/__init__.pyi +46 -144
- bpy/ops/script/__init__.pyi +3 -11
- bpy/ops/sculpt/__init__.pyi +40 -94
- bpy/ops/sculpt_curves/__init__.pyi +4 -10
- bpy/ops/sequencer/__init__.pyi +104 -327
- bpy/ops/sound/__init__.pyi +17 -28
- bpy/ops/spreadsheet/__init__.pyi +4 -15
- bpy/ops/surface/__init__.pyi +6 -13
- bpy/ops/text/__init__.pyi +43 -175
- bpy/ops/text_editor/__init__.pyi +1 -3
- bpy/ops/texture/__init__.pyi +4 -21
- bpy/ops/transform/__init__.pyi +114 -134
- bpy/ops/ui/__init__.pyi +39 -120
- bpy/ops/uilist/__init__.pyi +3 -7
- bpy/ops/uv/__init__.pyi +58 -143
- bpy/ops/view2d/__init__.pyi +14 -39
- bpy/ops/view3d/__init__.pyi +68 -238
- bpy/ops/wm/__init__.pyi +178 -319
- bpy/ops/workspace/__init__.pyi +7 -33
- bpy/ops/world/__init__.pyi +2 -11
- bpy/path/__init__.pyi +16 -6
- bpy/props/__init__.pyi +157 -127
- bpy/types/__init__.pyi +35227 -34838
- bpy/utils/__init__.pyi +71 -25
- bpy/utils/previews/__init__.pyi +2 -1
- bpy/utils/units/__init__.pyi +2 -1
- bpy_extras/anim_utils/__init__.pyi +11 -3
- bpy_extras/bmesh_utils/__init__.pyi +2 -1
- bpy_extras/image_utils/__init__.pyi +5 -2
- bpy_extras/io_utils/__init__.pyi +12 -5
- bpy_extras/mesh_utils/__init__.pyi +27 -6
- bpy_extras/object_utils/__init__.pyi +6 -5
- bpy_extras/view3d_utils/__init__.pyi +9 -2
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/METADATA +3 -3
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/RECORD +153 -152
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/WHEEL +1 -1
- freestyle/chainingiterators/__init__.pyi +7 -2
- freestyle/functions/__init__.pyi +16 -4
- freestyle/shaders/__init__.pyi +5 -1
- freestyle/types/__init__.pyi +103 -30
- freestyle/utils/ContextFunctions/__init__.pyi +2 -2
- freestyle/utils/__init__.pyi +2 -1
- gpu/capabilities/__init__.pyi +2 -1
- gpu/matrix/__init__.pyi +4 -2
- gpu/state/__init__.pyi +2 -2
- gpu/types/__init__.pyi +40 -8
- gpu_extras/batch/__init__.pyi +13 -1
- gpu_extras/presets/__init__.pyi +10 -1
- idprop/types/__init__.pyi +4 -2
- imbuf/__init__.pyi +6 -3
- imbuf/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +126 -35
- mathutils/bvhtree/__init__.pyi +21 -6
- mathutils/geometry/__init__.pyi +68 -22
- mathutils/interpolate/__init__.pyi +5 -1
- mathutils/kdtree/__init__.pyi +21 -8
- mathutils/noise/__init__.pyi +2 -1
- rna_info/__init__.pyi +2 -1
- {fake_bge_module-20250103.dist-info → fake_bge_module-20250201.dist-info}/top_level.txt +0 -0
bpy/ops/sound/__init__.pyi
CHANGED
|
@@ -1,25 +1,21 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.
|
|
5
|
-
import bpy.typing
|
|
4
|
+
import bpy._typing.rna_enums
|
|
6
5
|
|
|
7
6
|
def bake_animation(
|
|
8
|
-
|
|
9
|
-
execution_context: int | str | None = None,
|
|
10
|
-
undo: bool | None = None,
|
|
7
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
11
8
|
):
|
|
12
9
|
"""Update the audio animation cache
|
|
13
10
|
|
|
14
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
15
11
|
:type execution_context: int | str | None
|
|
16
12
|
:type undo: bool | None
|
|
17
13
|
"""
|
|
18
14
|
|
|
19
15
|
def mixdown(
|
|
20
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
21
16
|
execution_context: int | str | None = None,
|
|
22
17
|
undo: bool | None = None,
|
|
18
|
+
/,
|
|
23
19
|
*,
|
|
24
20
|
filepath: str = "",
|
|
25
21
|
check_existing: bool | None = True,
|
|
@@ -48,7 +44,9 @@ def mixdown(
|
|
|
48
44
|
| None = "DEFAULT",
|
|
49
45
|
sort_method: str | None = "",
|
|
50
46
|
accuracy: int | None = 1024,
|
|
51
|
-
container: typing.Literal[
|
|
47
|
+
container: typing.Literal[
|
|
48
|
+
"AAC", "AC3", "FLAC", "MATROSKA", "MP2", "MP3", "OGG", "WAV"
|
|
49
|
+
]
|
|
52
50
|
| None = "FLAC",
|
|
53
51
|
codec: typing.Literal["AAC", "AC3", "FLAC", "MP2", "MP3", "PCM", "VORBIS"]
|
|
54
52
|
| None = "FLAC",
|
|
@@ -70,7 +68,6 @@ def mixdown(
|
|
|
70
68
|
):
|
|
71
69
|
"""Mix the scene's audio to a sound file
|
|
72
70
|
|
|
73
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
74
71
|
:type execution_context: int | str | None
|
|
75
72
|
:type undo: bool | None
|
|
76
73
|
:param filepath: File Path, Path to file
|
|
@@ -135,6 +132,9 @@ def mixdown(
|
|
|
135
132
|
:type accuracy: int | None
|
|
136
133
|
:param container: Container, File format
|
|
137
134
|
|
|
135
|
+
AAC
|
|
136
|
+
AAC -- Advanced Audio Coding.
|
|
137
|
+
|
|
138
138
|
AC3
|
|
139
139
|
AC3 -- Dolby Digital ATRAC 3.
|
|
140
140
|
|
|
@@ -155,7 +155,7 @@ def mixdown(
|
|
|
155
155
|
|
|
156
156
|
WAV
|
|
157
157
|
WAV -- Waveform Audio File Format.
|
|
158
|
-
:type container: typing.Literal['AC3','FLAC','MATROSKA','MP2','MP3','OGG','WAV'] | None
|
|
158
|
+
:type container: typing.Literal['AAC','AC3','FLAC','MATROSKA','MP2','MP3','OGG','WAV'] | None
|
|
159
159
|
:param codec: Codec, Audio Codec
|
|
160
160
|
|
|
161
161
|
AAC
|
|
@@ -234,9 +234,9 @@ def mixdown(
|
|
|
234
234
|
"""
|
|
235
235
|
|
|
236
236
|
def open(
|
|
237
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
238
237
|
execution_context: int | str | None = None,
|
|
239
238
|
undo: bool | None = None,
|
|
239
|
+
/,
|
|
240
240
|
*,
|
|
241
241
|
filepath: str = "",
|
|
242
242
|
hide_props_region: bool | None = True,
|
|
@@ -272,7 +272,6 @@ def open(
|
|
|
272
272
|
):
|
|
273
273
|
"""Load a sound file
|
|
274
274
|
|
|
275
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
276
275
|
:type execution_context: int | str | None
|
|
277
276
|
:type undo: bool | None
|
|
278
277
|
:param filepath: File Path, Path to file
|
|
@@ -346,9 +345,9 @@ def open(
|
|
|
346
345
|
"""
|
|
347
346
|
|
|
348
347
|
def open_mono(
|
|
349
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
350
348
|
execution_context: int | str | None = None,
|
|
351
349
|
undo: bool | None = None,
|
|
350
|
+
/,
|
|
352
351
|
*,
|
|
353
352
|
filepath: str = "",
|
|
354
353
|
hide_props_region: bool | None = True,
|
|
@@ -384,7 +383,6 @@ def open_mono(
|
|
|
384
383
|
):
|
|
385
384
|
"""Load a sound file as mono
|
|
386
385
|
|
|
387
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
388
386
|
:type execution_context: int | str | None
|
|
389
387
|
:type undo: bool | None
|
|
390
388
|
:param filepath: File Path, Path to file
|
|
@@ -457,45 +455,36 @@ def open_mono(
|
|
|
457
455
|
:type mono: bool | None
|
|
458
456
|
"""
|
|
459
457
|
|
|
460
|
-
def pack(
|
|
461
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
462
|
-
execution_context: int | str | None = None,
|
|
463
|
-
undo: bool | None = None,
|
|
464
|
-
):
|
|
458
|
+
def pack(execution_context: int | str | None = None, undo: bool | None = None):
|
|
465
459
|
"""Pack the sound into the current blend file
|
|
466
460
|
|
|
467
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
468
461
|
:type execution_context: int | str | None
|
|
469
462
|
:type undo: bool | None
|
|
470
463
|
"""
|
|
471
464
|
|
|
472
465
|
def unpack(
|
|
473
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
474
466
|
execution_context: int | str | None = None,
|
|
475
467
|
undo: bool | None = None,
|
|
468
|
+
/,
|
|
476
469
|
*,
|
|
477
|
-
method: bpy.
|
|
470
|
+
method: bpy._typing.rna_enums.UnpackMethodItems | None = "USE_LOCAL",
|
|
478
471
|
id: str = "",
|
|
479
472
|
):
|
|
480
473
|
"""Unpack the sound to the samples filename
|
|
481
474
|
|
|
482
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
483
475
|
:type execution_context: int | str | None
|
|
484
476
|
:type undo: bool | None
|
|
485
477
|
:param method: Method, How to unpack
|
|
486
|
-
:type method: bpy.
|
|
478
|
+
:type method: bpy._typing.rna_enums.UnpackMethodItems | None
|
|
487
479
|
:param id: Sound Name, Sound data-block name to unpack
|
|
488
480
|
:type id: str
|
|
489
481
|
"""
|
|
490
482
|
|
|
491
483
|
def update_animation_flags(
|
|
492
|
-
|
|
493
|
-
execution_context: int | str | None = None,
|
|
494
|
-
undo: bool | None = None,
|
|
484
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
495
485
|
):
|
|
496
486
|
"""Update animation flags
|
|
497
487
|
|
|
498
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
499
488
|
:type execution_context: int | str | None
|
|
500
489
|
:type undo: bool | None
|
|
501
490
|
"""
|
bpy/ops/spreadsheet/__init__.pyi
CHANGED
|
@@ -1,31 +1,26 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
|
|
6
5
|
def add_row_filter_rule(
|
|
7
|
-
|
|
8
|
-
execution_context: int | str | None = None,
|
|
9
|
-
undo: bool | None = None,
|
|
6
|
+
execution_context: int | str | None = None, undo: bool | None = None
|
|
10
7
|
):
|
|
11
8
|
"""Add a filter to remove rows from the displayed data
|
|
12
9
|
|
|
13
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
14
10
|
:type execution_context: int | str | None
|
|
15
11
|
:type undo: bool | None
|
|
16
12
|
"""
|
|
17
13
|
|
|
18
14
|
def change_spreadsheet_data_source(
|
|
19
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
20
15
|
execution_context: int | str | None = None,
|
|
21
16
|
undo: bool | None = None,
|
|
17
|
+
/,
|
|
22
18
|
*,
|
|
23
19
|
component_type: int | None = 0,
|
|
24
20
|
attribute_domain_type: int | None = 0,
|
|
25
21
|
):
|
|
26
22
|
"""Change visible data source in the spreadsheet
|
|
27
23
|
|
|
28
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
29
24
|
:type execution_context: int | str | None
|
|
30
25
|
:type undo: bool | None
|
|
31
26
|
:param component_type: Component Type
|
|
@@ -35,29 +30,23 @@ def change_spreadsheet_data_source(
|
|
|
35
30
|
"""
|
|
36
31
|
|
|
37
32
|
def remove_row_filter_rule(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
33
|
execution_context: int | str | None = None,
|
|
40
34
|
undo: bool | None = None,
|
|
35
|
+
/,
|
|
41
36
|
*,
|
|
42
37
|
index: int | None = 0,
|
|
43
38
|
):
|
|
44
39
|
"""Remove a row filter from the rules
|
|
45
40
|
|
|
46
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
47
41
|
:type execution_context: int | str | None
|
|
48
42
|
:type undo: bool | None
|
|
49
43
|
:param index: Index
|
|
50
44
|
:type index: int | None
|
|
51
45
|
"""
|
|
52
46
|
|
|
53
|
-
def toggle_pin(
|
|
54
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
55
|
-
execution_context: int | str | None = None,
|
|
56
|
-
undo: bool | None = None,
|
|
57
|
-
):
|
|
47
|
+
def toggle_pin(execution_context: int | str | None = None, undo: bool | None = None):
|
|
58
48
|
"""Turn on or off pinning
|
|
59
49
|
|
|
60
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
61
50
|
:type execution_context: int | str | None
|
|
62
51
|
:type undo: bool | None
|
|
63
52
|
"""
|
bpy/ops/surface/__init__.pyi
CHANGED
|
@@ -1,13 +1,12 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import typing_extensions
|
|
4
|
-
import bpy.types
|
|
5
4
|
import mathutils
|
|
6
5
|
|
|
7
6
|
def primitive_nurbs_surface_circle_add(
|
|
8
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
9
7
|
execution_context: int | str | None = None,
|
|
10
8
|
undo: bool | None = None,
|
|
9
|
+
/,
|
|
11
10
|
*,
|
|
12
11
|
radius: float | None = 1.0,
|
|
13
12
|
enter_editmode: bool | None = False,
|
|
@@ -26,7 +25,6 @@ def primitive_nurbs_surface_circle_add(
|
|
|
26
25
|
):
|
|
27
26
|
"""Construct a Nurbs surface Circle
|
|
28
27
|
|
|
29
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
30
28
|
:type execution_context: int | str | None
|
|
31
29
|
:type undo: bool | None
|
|
32
30
|
:param radius: Radius
|
|
@@ -53,9 +51,9 @@ def primitive_nurbs_surface_circle_add(
|
|
|
53
51
|
"""
|
|
54
52
|
|
|
55
53
|
def primitive_nurbs_surface_curve_add(
|
|
56
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
57
54
|
execution_context: int | str | None = None,
|
|
58
55
|
undo: bool | None = None,
|
|
56
|
+
/,
|
|
59
57
|
*,
|
|
60
58
|
radius: float | None = 1.0,
|
|
61
59
|
enter_editmode: bool | None = False,
|
|
@@ -74,7 +72,6 @@ def primitive_nurbs_surface_curve_add(
|
|
|
74
72
|
):
|
|
75
73
|
"""Construct a Nurbs surface Curve
|
|
76
74
|
|
|
77
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
78
75
|
:type execution_context: int | str | None
|
|
79
76
|
:type undo: bool | None
|
|
80
77
|
:param radius: Radius
|
|
@@ -101,9 +98,9 @@ def primitive_nurbs_surface_curve_add(
|
|
|
101
98
|
"""
|
|
102
99
|
|
|
103
100
|
def primitive_nurbs_surface_cylinder_add(
|
|
104
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
105
101
|
execution_context: int | str | None = None,
|
|
106
102
|
undo: bool | None = None,
|
|
103
|
+
/,
|
|
107
104
|
*,
|
|
108
105
|
radius: float | None = 1.0,
|
|
109
106
|
enter_editmode: bool | None = False,
|
|
@@ -122,7 +119,6 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
122
119
|
):
|
|
123
120
|
"""Construct a Nurbs surface Cylinder
|
|
124
121
|
|
|
125
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
126
122
|
:type execution_context: int | str | None
|
|
127
123
|
:type undo: bool | None
|
|
128
124
|
:param radius: Radius
|
|
@@ -149,9 +145,9 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
149
145
|
"""
|
|
150
146
|
|
|
151
147
|
def primitive_nurbs_surface_sphere_add(
|
|
152
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
153
148
|
execution_context: int | str | None = None,
|
|
154
149
|
undo: bool | None = None,
|
|
150
|
+
/,
|
|
155
151
|
*,
|
|
156
152
|
radius: float | None = 1.0,
|
|
157
153
|
enter_editmode: bool | None = False,
|
|
@@ -170,7 +166,6 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
170
166
|
):
|
|
171
167
|
"""Construct a Nurbs surface Sphere
|
|
172
168
|
|
|
173
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
174
169
|
:type execution_context: int | str | None
|
|
175
170
|
:type undo: bool | None
|
|
176
171
|
:param radius: Radius
|
|
@@ -197,9 +192,9 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
197
192
|
"""
|
|
198
193
|
|
|
199
194
|
def primitive_nurbs_surface_surface_add(
|
|
200
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
201
195
|
execution_context: int | str | None = None,
|
|
202
196
|
undo: bool | None = None,
|
|
197
|
+
/,
|
|
203
198
|
*,
|
|
204
199
|
radius: float | None = 1.0,
|
|
205
200
|
enter_editmode: bool | None = False,
|
|
@@ -218,7 +213,6 @@ def primitive_nurbs_surface_surface_add(
|
|
|
218
213
|
):
|
|
219
214
|
"""Construct a Nurbs surface Patch
|
|
220
215
|
|
|
221
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
222
216
|
:type execution_context: int | str | None
|
|
223
217
|
:type undo: bool | None
|
|
224
218
|
:param radius: Radius
|
|
@@ -245,9 +239,9 @@ def primitive_nurbs_surface_surface_add(
|
|
|
245
239
|
"""
|
|
246
240
|
|
|
247
241
|
def primitive_nurbs_surface_torus_add(
|
|
248
|
-
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
249
242
|
execution_context: int | str | None = None,
|
|
250
243
|
undo: bool | None = None,
|
|
244
|
+
/,
|
|
251
245
|
*,
|
|
252
246
|
radius: float | None = 1.0,
|
|
253
247
|
enter_editmode: bool | None = False,
|
|
@@ -266,7 +260,6 @@ def primitive_nurbs_surface_torus_add(
|
|
|
266
260
|
):
|
|
267
261
|
"""Construct a Nurbs surface Torus
|
|
268
262
|
|
|
269
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
270
263
|
:type execution_context: int | str | None
|
|
271
264
|
:type undo: bool | None
|
|
272
265
|
:param radius: Radius
|