fake-bpy-module 20240411__py3-none-any.whl → 20240418__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_internal/__init__.pyi +4 -0
- _bpy_internal/freedesktop/__init__.pyi +88 -0
- _bpy_internal/freedesktop/py.typed +0 -0
- _bpy_internal/py.typed +0 -0
- aud/__init__.pyi +121 -48
- bgl/__init__.pyi +2443 -1265
- bl_math/__init__.pyi +19 -3
- bl_operators/presets/__init__.pyi +7 -0
- bl_ui/node_add_menu/__init__.pyi +1 -1
- bl_ui/properties_data_lightprobe/__init__.pyi +1134 -0
- bl_ui/properties_physics_dynamicpaint/__init__.pyi +3 -0
- bl_ui/properties_physics_fluid/__init__.pyi +3 -0
- bl_ui/space_toolsystem_toolbar/__init__.pyi +17 -0
- bl_ui/space_userpref/__init__.pyi +13 -4
- bl_ui/space_view3d/__init__.pyi +190 -0
- blf/__init__.pyi +63 -13
- bmesh/__init__.pyi +13 -0
- bmesh/geometry/__init__.pyi +5 -0
- bmesh/ops/__init__.pyi +157 -68
- bmesh/types/__init__.pyi +109 -62
- bmesh/utils/__init__.pyi +11 -2
- bpy/__init__.pyi +7 -0
- bpy/app/__init__.pyi +13 -0
- bpy/app/handlers/__init__.pyi +41 -0
- bpy/app/icons/__init__.pyi +4 -2
- bpy/app/timers/__init__.pyi +38 -2
- bpy/app/translations/__init__.pyi +59 -1
- bpy/msgbus/__init__.pyi +46 -0
- bpy/ops/__init__.pyi +151 -0
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +104 -104
- bpy/ops/armature/__init__.pyi +96 -96
- bpy/ops/asset/__init__.pyi +32 -32
- bpy/ops/boid/__init__.pyi +16 -16
- bpy/ops/brush/__init__.pyi +18 -18
- bpy/ops/buttons/__init__.pyi +12 -12
- bpy/ops/cachefile/__init__.pyi +10 -10
- bpy/ops/camera/__init__.pyi +4 -4
- bpy/ops/clip/__init__.pyi +184 -184
- bpy/ops/cloth/__init__.pyi +2 -2
- bpy/ops/collection/__init__.pyi +18 -18
- bpy/ops/console/__init__.pyi +42 -42
- bpy/ops/constraint/__init__.pyi +36 -36
- bpy/ops/curve/__init__.pyi +102 -102
- bpy/ops/curves/__init__.pyi +132 -50
- bpy/ops/cycles/__init__.pyi +6 -6
- bpy/ops/dpaint/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +24 -24
- bpy/ops/export_anim/__init__.pyi +2 -2
- bpy/ops/export_mesh/__init__.pyi +2 -2
- bpy/ops/export_scene/__init__.pyi +11 -8
- bpy/ops/file/__init__.pyi +80 -80
- bpy/ops/fluid/__init__.pyi +28 -28
- bpy/ops/font/__init__.pyi +46 -46
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +4 -4
- bpy/ops/gpencil/__init__.pyi +300 -300
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +139 -110
- bpy/ops/image/__init__.pyi +92 -92
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_mesh/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +6 -6
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +16 -16
- bpy/ops/marker/__init__.pyi +22 -22
- bpy/ops/mask/__init__.pyi +78 -78
- bpy/ops/material/__init__.pyi +6 -6
- bpy/ops/mball/__init__.pyi +16 -16
- bpy/ops/mesh/__init__.pyi +327 -327
- bpy/ops/nla/__init__.pyi +80 -80
- bpy/ops/node/__init__.pyi +203 -203
- bpy/ops/object/__init__.pyi +496 -508
- bpy/ops/outliner/__init__.pyi +139 -139
- bpy/ops/paint/__init__.pyi +104 -104
- bpy/ops/paintcurve/__init__.pyi +16 -16
- bpy/ops/palette/__init__.pyi +14 -14
- bpy/ops/particle/__init__.pyi +72 -72
- bpy/ops/pose/__init__.pyi +78 -78
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +77 -77
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +24 -24
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +78 -78
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +68 -62
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +170 -170
- bpy/ops/sound/__init__.pyi +14 -14
- bpy/ops/spreadsheet/__init__.pyi +8 -8
- bpy/ops/surface/__init__.pyi +12 -12
- bpy/ops/text/__init__.pyi +86 -86
- bpy/ops/text_editor/__init__.pyi +2 -2
- bpy/ops/texture/__init__.pyi +8 -8
- bpy/ops/transform/__init__.pyi +54 -54
- bpy/ops/ui/__init__.pyi +64 -64
- bpy/ops/uilist/__init__.pyi +6 -6
- bpy/ops/uv/__init__.pyi +98 -98
- bpy/ops/view2d/__init__.pyi +28 -28
- bpy/ops/view3d/__init__.pyi +134 -134
- bpy/ops/wm/__init__.pyi +225 -225
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +2 -2
- bpy/path/__init__.pyi +6 -0
- bpy/props/__init__.pyi +141 -29
- bpy/types/__init__.pyi +101773 -5222
- bpy/utils/__init__.pyi +18 -3
- bpy/utils/previews/__init__.pyi +15 -0
- bpy/utils/units/__init__.pyi +11 -3
- bpy_extras/__init__.pyi +19 -0
- bpy_extras/asset_utils/__init__.pyi +5 -0
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/RECORD +145 -141
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/top_level.txt +1 -0
- freestyle/__init__.pyi +18 -0
- freestyle/chainingiterators/__init__.pyi +20 -5
- freestyle/functions/__init__.pyi +151 -155
- freestyle/predicates/__init__.pyi +53 -46
- freestyle/shaders/__init__.pyi +91 -32
- freestyle/types/__init__.pyi +362 -120
- freestyle/utils/ContextFunctions/__init__.pyi +32 -7
- freestyle/utils/__init__.pyi +13 -1
- gpu/__init__.pyi +225 -0
- gpu/capabilities/__init__.pyi +37 -15
- gpu/matrix/__init__.pyi +7 -1
- gpu/platform/__init__.pyi +5 -0
- gpu/select/__init__.pyi +5 -0
- gpu/shader/__init__.pyi +77 -0
- gpu/state/__init__.pyi +15 -4
- gpu/texture/__init__.pyi +5 -0
- gpu/types/__init__.pyi +91 -33
- gpu_extras/__init__.pyi +15 -0
- gpu_extras/presets/__init__.pyi +16 -4
- imbuf/__init__.pyi +13 -0
- imbuf/types/__init__.pyi +20 -5
- mathutils/__init__.pyi +349 -227
- mathutils/bvhtree/__init__.pyi +21 -8
- mathutils/geometry/__init__.pyi +23 -9
- mathutils/interpolate/__init__.pyi +5 -0
- mathutils/kdtree/__init__.pyi +19 -5
- mathutils/noise/__init__.pyi +87 -41
- {fake_bpy_module-20240411.dist-info → fake_bpy_module-20240418.dist-info}/WHEEL +0 -0
bpy/ops/curve/__init__.pyi
CHANGED
|
@@ -5,14 +5,14 @@ GenericType = typing.TypeVar("GenericType")
|
|
|
5
5
|
|
|
6
6
|
def cyclic_toggle(
|
|
7
7
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
8
|
-
execution_context: str = None,
|
|
8
|
+
execution_context: typing.Union[str, int] = None,
|
|
9
9
|
undo: bool = None,
|
|
10
10
|
direction: typing.Any = "CYCLIC_U",
|
|
11
11
|
):
|
|
12
12
|
"""Make active spline closed/opened loop
|
|
13
13
|
|
|
14
14
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
15
|
-
:type execution_context: str
|
|
15
|
+
:type execution_context: typing.Union[str, int]
|
|
16
16
|
:type undo: bool
|
|
17
17
|
:param direction: Direction, Direction to make surface cyclic in
|
|
18
18
|
:type direction: typing.Any
|
|
@@ -22,13 +22,13 @@ def cyclic_toggle(
|
|
|
22
22
|
|
|
23
23
|
def de_select_first(
|
|
24
24
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
25
|
-
execution_context: str = None,
|
|
25
|
+
execution_context: typing.Union[str, int] = None,
|
|
26
26
|
undo: bool = None,
|
|
27
27
|
):
|
|
28
28
|
"""(De)select first of visible part of each NURBS
|
|
29
29
|
|
|
30
30
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
31
|
-
:type execution_context: str
|
|
31
|
+
:type execution_context: typing.Union[str, int]
|
|
32
32
|
:type undo: bool
|
|
33
33
|
"""
|
|
34
34
|
|
|
@@ -36,13 +36,13 @@ def de_select_first(
|
|
|
36
36
|
|
|
37
37
|
def de_select_last(
|
|
38
38
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
39
|
-
execution_context: str = None,
|
|
39
|
+
execution_context: typing.Union[str, int] = None,
|
|
40
40
|
undo: bool = None,
|
|
41
41
|
):
|
|
42
42
|
"""(De)select last of visible part of each NURBS
|
|
43
43
|
|
|
44
44
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
45
|
-
:type execution_context: str
|
|
45
|
+
:type execution_context: typing.Union[str, int]
|
|
46
46
|
:type undo: bool
|
|
47
47
|
"""
|
|
48
48
|
|
|
@@ -50,14 +50,14 @@ def de_select_last(
|
|
|
50
50
|
|
|
51
51
|
def decimate(
|
|
52
52
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
53
|
-
execution_context: str = None,
|
|
53
|
+
execution_context: typing.Union[str, int] = None,
|
|
54
54
|
undo: bool = None,
|
|
55
55
|
ratio: typing.Any = 1.0,
|
|
56
56
|
):
|
|
57
57
|
"""Simplify selected curves
|
|
58
58
|
|
|
59
59
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
60
|
-
:type execution_context: str
|
|
60
|
+
:type execution_context: typing.Union[str, int]
|
|
61
61
|
:type undo: bool
|
|
62
62
|
:param ratio: Ratio
|
|
63
63
|
:type ratio: typing.Any
|
|
@@ -67,14 +67,14 @@ def decimate(
|
|
|
67
67
|
|
|
68
68
|
def delete(
|
|
69
69
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
70
|
-
execution_context: str = None,
|
|
70
|
+
execution_context: typing.Union[str, int] = None,
|
|
71
71
|
undo: bool = None,
|
|
72
72
|
type: typing.Any = "VERT",
|
|
73
73
|
):
|
|
74
74
|
"""Delete selected control points or segments
|
|
75
75
|
|
|
76
76
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
77
|
-
:type execution_context: str
|
|
77
|
+
:type execution_context: typing.Union[str, int]
|
|
78
78
|
:type undo: bool
|
|
79
79
|
:param type: Type, Which elements to delete
|
|
80
80
|
:type type: typing.Any
|
|
@@ -84,13 +84,13 @@ def delete(
|
|
|
84
84
|
|
|
85
85
|
def dissolve_verts(
|
|
86
86
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
87
|
-
execution_context: str = None,
|
|
87
|
+
execution_context: typing.Union[str, int] = None,
|
|
88
88
|
undo: bool = None,
|
|
89
89
|
):
|
|
90
90
|
"""Delete selected control points, correcting surrounding handles
|
|
91
91
|
|
|
92
92
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
93
|
-
:type execution_context: str
|
|
93
|
+
:type execution_context: typing.Union[str, int]
|
|
94
94
|
:type undo: bool
|
|
95
95
|
"""
|
|
96
96
|
|
|
@@ -98,7 +98,7 @@ def dissolve_verts(
|
|
|
98
98
|
|
|
99
99
|
def draw(
|
|
100
100
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
101
|
-
execution_context: str = None,
|
|
101
|
+
execution_context: typing.Union[str, int] = None,
|
|
102
102
|
undo: bool = None,
|
|
103
103
|
error_threshold: typing.Any = 0.0,
|
|
104
104
|
fit_method: typing.Union[str, int] = "REFIT",
|
|
@@ -110,7 +110,7 @@ def draw(
|
|
|
110
110
|
"""Draw a freehand spline
|
|
111
111
|
|
|
112
112
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
113
|
-
:type execution_context: str
|
|
113
|
+
:type execution_context: typing.Union[str, int]
|
|
114
114
|
:type undo: bool
|
|
115
115
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
116
116
|
:type error_threshold: typing.Any
|
|
@@ -130,13 +130,13 @@ def draw(
|
|
|
130
130
|
|
|
131
131
|
def duplicate(
|
|
132
132
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
133
|
-
execution_context: str = None,
|
|
133
|
+
execution_context: typing.Union[str, int] = None,
|
|
134
134
|
undo: bool = None,
|
|
135
135
|
):
|
|
136
136
|
"""Duplicate selected control points
|
|
137
137
|
|
|
138
138
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
139
|
-
:type execution_context: str
|
|
139
|
+
:type execution_context: typing.Union[str, int]
|
|
140
140
|
:type undo: bool
|
|
141
141
|
"""
|
|
142
142
|
|
|
@@ -144,7 +144,7 @@ def duplicate(
|
|
|
144
144
|
|
|
145
145
|
def duplicate_move(
|
|
146
146
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
147
|
-
execution_context: str = None,
|
|
147
|
+
execution_context: typing.Union[str, int] = None,
|
|
148
148
|
undo: bool = None,
|
|
149
149
|
CURVE_OT_duplicate: typing.Any = None,
|
|
150
150
|
TRANSFORM_OT_translate: typing.Any = None,
|
|
@@ -152,7 +152,7 @@ def duplicate_move(
|
|
|
152
152
|
"""Duplicate curve and move
|
|
153
153
|
|
|
154
154
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
155
|
-
:type execution_context: str
|
|
155
|
+
:type execution_context: typing.Union[str, int]
|
|
156
156
|
:type undo: bool
|
|
157
157
|
:param CURVE_OT_duplicate: Duplicate Curve, Duplicate selected control points
|
|
158
158
|
:type CURVE_OT_duplicate: typing.Any
|
|
@@ -164,14 +164,14 @@ def duplicate_move(
|
|
|
164
164
|
|
|
165
165
|
def extrude(
|
|
166
166
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
167
|
-
execution_context: str = None,
|
|
167
|
+
execution_context: typing.Union[str, int] = None,
|
|
168
168
|
undo: bool = None,
|
|
169
169
|
mode: typing.Union[str, int] = "TRANSLATION",
|
|
170
170
|
):
|
|
171
171
|
"""Extrude selected control point(s)
|
|
172
172
|
|
|
173
173
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
174
|
-
:type execution_context: str
|
|
174
|
+
:type execution_context: typing.Union[str, int]
|
|
175
175
|
:type undo: bool
|
|
176
176
|
:param mode: Mode
|
|
177
177
|
:type mode: typing.Union[str, int]
|
|
@@ -181,7 +181,7 @@ def extrude(
|
|
|
181
181
|
|
|
182
182
|
def extrude_move(
|
|
183
183
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
184
|
-
execution_context: str = None,
|
|
184
|
+
execution_context: typing.Union[str, int] = None,
|
|
185
185
|
undo: bool = None,
|
|
186
186
|
CURVE_OT_extrude: typing.Any = None,
|
|
187
187
|
TRANSFORM_OT_translate: typing.Any = None,
|
|
@@ -189,7 +189,7 @@ def extrude_move(
|
|
|
189
189
|
"""Extrude curve and move result
|
|
190
190
|
|
|
191
191
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
192
|
-
:type execution_context: str
|
|
192
|
+
:type execution_context: typing.Union[str, int]
|
|
193
193
|
:type undo: bool
|
|
194
194
|
:param CURVE_OT_extrude: Extrude, Extrude selected control point(s)
|
|
195
195
|
:type CURVE_OT_extrude: typing.Any
|
|
@@ -201,14 +201,14 @@ def extrude_move(
|
|
|
201
201
|
|
|
202
202
|
def handle_type_set(
|
|
203
203
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
204
|
-
execution_context: str = None,
|
|
204
|
+
execution_context: typing.Union[str, int] = None,
|
|
205
205
|
undo: bool = None,
|
|
206
206
|
type: typing.Any = "AUTOMATIC",
|
|
207
207
|
):
|
|
208
208
|
"""Set type of handles for selected control points
|
|
209
209
|
|
|
210
210
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
211
|
-
:type execution_context: str
|
|
211
|
+
:type execution_context: typing.Union[str, int]
|
|
212
212
|
:type undo: bool
|
|
213
213
|
:param type: Type, Spline type
|
|
214
214
|
:type type: typing.Any
|
|
@@ -218,14 +218,14 @@ def handle_type_set(
|
|
|
218
218
|
|
|
219
219
|
def hide(
|
|
220
220
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
221
|
-
execution_context: str = None,
|
|
221
|
+
execution_context: typing.Union[str, int] = None,
|
|
222
222
|
undo: bool = None,
|
|
223
223
|
unselected: typing.Union[bool, typing.Any] = False,
|
|
224
224
|
):
|
|
225
225
|
"""Hide (un)selected control points
|
|
226
226
|
|
|
227
227
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
228
|
-
:type execution_context: str
|
|
228
|
+
:type execution_context: typing.Union[str, int]
|
|
229
229
|
:type undo: bool
|
|
230
230
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
231
231
|
:type unselected: typing.Union[bool, typing.Any]
|
|
@@ -235,13 +235,13 @@ def hide(
|
|
|
235
235
|
|
|
236
236
|
def make_segment(
|
|
237
237
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
238
|
-
execution_context: str = None,
|
|
238
|
+
execution_context: typing.Union[str, int] = None,
|
|
239
239
|
undo: bool = None,
|
|
240
240
|
):
|
|
241
241
|
"""Join two curves by their selected ends
|
|
242
242
|
|
|
243
243
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
244
|
-
:type execution_context: str
|
|
244
|
+
:type execution_context: typing.Union[str, int]
|
|
245
245
|
:type undo: bool
|
|
246
246
|
"""
|
|
247
247
|
|
|
@@ -249,13 +249,13 @@ def make_segment(
|
|
|
249
249
|
|
|
250
250
|
def match_texture_space(
|
|
251
251
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
252
|
-
execution_context: str = None,
|
|
252
|
+
execution_context: typing.Union[str, int] = None,
|
|
253
253
|
undo: bool = None,
|
|
254
254
|
):
|
|
255
255
|
"""Match texture space to object's bounding box
|
|
256
256
|
|
|
257
257
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
258
|
-
:type execution_context: str
|
|
258
|
+
:type execution_context: typing.Union[str, int]
|
|
259
259
|
:type undo: bool
|
|
260
260
|
"""
|
|
261
261
|
|
|
@@ -263,14 +263,14 @@ def match_texture_space(
|
|
|
263
263
|
|
|
264
264
|
def normals_make_consistent(
|
|
265
265
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
266
|
-
execution_context: str = None,
|
|
266
|
+
execution_context: typing.Union[str, int] = None,
|
|
267
267
|
undo: bool = None,
|
|
268
268
|
calc_length: typing.Union[bool, typing.Any] = False,
|
|
269
269
|
):
|
|
270
270
|
"""Recalculate the direction of selected handles
|
|
271
271
|
|
|
272
272
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
273
|
-
:type execution_context: str
|
|
273
|
+
:type execution_context: typing.Union[str, int]
|
|
274
274
|
:type undo: bool
|
|
275
275
|
:param calc_length: Length, Recalculate handle length
|
|
276
276
|
:type calc_length: typing.Union[bool, typing.Any]
|
|
@@ -280,7 +280,7 @@ def normals_make_consistent(
|
|
|
280
280
|
|
|
281
281
|
def pen(
|
|
282
282
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
283
|
-
execution_context: str = None,
|
|
283
|
+
execution_context: typing.Union[str, int] = None,
|
|
284
284
|
undo: bool = None,
|
|
285
285
|
extend: typing.Union[bool, typing.Any] = False,
|
|
286
286
|
deselect: typing.Union[bool, typing.Any] = False,
|
|
@@ -302,7 +302,7 @@ def pen(
|
|
|
302
302
|
"""Construct and edit splines
|
|
303
303
|
|
|
304
304
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
305
|
-
:type execution_context: str
|
|
305
|
+
:type execution_context: typing.Union[str, int]
|
|
306
306
|
:type undo: bool
|
|
307
307
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
308
308
|
:type extend: typing.Union[bool, typing.Any]
|
|
@@ -351,7 +351,7 @@ def pen(
|
|
|
351
351
|
|
|
352
352
|
def primitive_bezier_circle_add(
|
|
353
353
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
354
|
-
execution_context: str = None,
|
|
354
|
+
execution_context: typing.Union[str, int] = None,
|
|
355
355
|
undo: bool = None,
|
|
356
356
|
radius: typing.Any = 1.0,
|
|
357
357
|
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
@@ -363,7 +363,7 @@ def primitive_bezier_circle_add(
|
|
|
363
363
|
"""Construct a Bézier Circle
|
|
364
364
|
|
|
365
365
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
366
|
-
:type execution_context: str
|
|
366
|
+
:type execution_context: typing.Union[str, int]
|
|
367
367
|
:type undo: bool
|
|
368
368
|
:param radius: Radius
|
|
369
369
|
:type radius: typing.Any
|
|
@@ -392,7 +392,7 @@ def primitive_bezier_circle_add(
|
|
|
392
392
|
|
|
393
393
|
def primitive_bezier_curve_add(
|
|
394
394
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
395
|
-
execution_context: str = None,
|
|
395
|
+
execution_context: typing.Union[str, int] = None,
|
|
396
396
|
undo: bool = None,
|
|
397
397
|
radius: typing.Any = 1.0,
|
|
398
398
|
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
@@ -404,7 +404,7 @@ def primitive_bezier_curve_add(
|
|
|
404
404
|
"""Construct a Bézier Curve
|
|
405
405
|
|
|
406
406
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
407
|
-
:type execution_context: str
|
|
407
|
+
:type execution_context: typing.Union[str, int]
|
|
408
408
|
:type undo: bool
|
|
409
409
|
:param radius: Radius
|
|
410
410
|
:type radius: typing.Any
|
|
@@ -433,7 +433,7 @@ def primitive_bezier_curve_add(
|
|
|
433
433
|
|
|
434
434
|
def primitive_nurbs_circle_add(
|
|
435
435
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
436
|
-
execution_context: str = None,
|
|
436
|
+
execution_context: typing.Union[str, int] = None,
|
|
437
437
|
undo: bool = None,
|
|
438
438
|
radius: typing.Any = 1.0,
|
|
439
439
|
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
@@ -445,7 +445,7 @@ def primitive_nurbs_circle_add(
|
|
|
445
445
|
"""Construct a Nurbs Circle
|
|
446
446
|
|
|
447
447
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
448
|
-
:type execution_context: str
|
|
448
|
+
:type execution_context: typing.Union[str, int]
|
|
449
449
|
:type undo: bool
|
|
450
450
|
:param radius: Radius
|
|
451
451
|
:type radius: typing.Any
|
|
@@ -474,7 +474,7 @@ def primitive_nurbs_circle_add(
|
|
|
474
474
|
|
|
475
475
|
def primitive_nurbs_curve_add(
|
|
476
476
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
477
|
-
execution_context: str = None,
|
|
477
|
+
execution_context: typing.Union[str, int] = None,
|
|
478
478
|
undo: bool = None,
|
|
479
479
|
radius: typing.Any = 1.0,
|
|
480
480
|
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
@@ -486,7 +486,7 @@ def primitive_nurbs_curve_add(
|
|
|
486
486
|
"""Construct a Nurbs Curve
|
|
487
487
|
|
|
488
488
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
489
|
-
:type execution_context: str
|
|
489
|
+
:type execution_context: typing.Union[str, int]
|
|
490
490
|
:type undo: bool
|
|
491
491
|
:param radius: Radius
|
|
492
492
|
:type radius: typing.Any
|
|
@@ -515,7 +515,7 @@ def primitive_nurbs_curve_add(
|
|
|
515
515
|
|
|
516
516
|
def primitive_nurbs_path_add(
|
|
517
517
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
518
|
-
execution_context: str = None,
|
|
518
|
+
execution_context: typing.Union[str, int] = None,
|
|
519
519
|
undo: bool = None,
|
|
520
520
|
radius: typing.Any = 1.0,
|
|
521
521
|
enter_editmode: typing.Union[bool, typing.Any] = False,
|
|
@@ -527,7 +527,7 @@ def primitive_nurbs_path_add(
|
|
|
527
527
|
"""Construct a Path
|
|
528
528
|
|
|
529
529
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
530
|
-
:type execution_context: str
|
|
530
|
+
:type execution_context: typing.Union[str, int]
|
|
531
531
|
:type undo: bool
|
|
532
532
|
:param radius: Radius
|
|
533
533
|
:type radius: typing.Any
|
|
@@ -556,14 +556,14 @@ def primitive_nurbs_path_add(
|
|
|
556
556
|
|
|
557
557
|
def radius_set(
|
|
558
558
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
559
|
-
execution_context: str = None,
|
|
559
|
+
execution_context: typing.Union[str, int] = None,
|
|
560
560
|
undo: bool = None,
|
|
561
561
|
radius: typing.Any = 1.0,
|
|
562
562
|
):
|
|
563
563
|
"""Set per-point radius which is used for bevel tapering
|
|
564
564
|
|
|
565
565
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
566
|
-
:type execution_context: str
|
|
566
|
+
:type execution_context: typing.Union[str, int]
|
|
567
567
|
:type undo: bool
|
|
568
568
|
:param radius: Radius
|
|
569
569
|
:type radius: typing.Any
|
|
@@ -573,14 +573,14 @@ def radius_set(
|
|
|
573
573
|
|
|
574
574
|
def reveal(
|
|
575
575
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
576
|
-
execution_context: str = None,
|
|
576
|
+
execution_context: typing.Union[str, int] = None,
|
|
577
577
|
undo: bool = None,
|
|
578
578
|
select: typing.Union[bool, typing.Any] = True,
|
|
579
579
|
):
|
|
580
580
|
"""Reveal hidden control points
|
|
581
581
|
|
|
582
582
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
583
|
-
:type execution_context: str
|
|
583
|
+
:type execution_context: typing.Union[str, int]
|
|
584
584
|
:type undo: bool
|
|
585
585
|
:param select: Select
|
|
586
586
|
:type select: typing.Union[bool, typing.Any]
|
|
@@ -590,14 +590,14 @@ def reveal(
|
|
|
590
590
|
|
|
591
591
|
def select_all(
|
|
592
592
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
593
|
-
execution_context: str = None,
|
|
593
|
+
execution_context: typing.Union[str, int] = None,
|
|
594
594
|
undo: bool = None,
|
|
595
595
|
action: typing.Any = "TOGGLE",
|
|
596
596
|
):
|
|
597
597
|
"""(De)select all control points
|
|
598
598
|
|
|
599
599
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
600
|
-
:type execution_context: str
|
|
600
|
+
:type execution_context: typing.Union[str, int]
|
|
601
601
|
:type undo: bool
|
|
602
602
|
:param action: Action, Selection action to execute
|
|
603
603
|
|
|
@@ -619,13 +619,13 @@ def select_all(
|
|
|
619
619
|
|
|
620
620
|
def select_less(
|
|
621
621
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
622
|
-
execution_context: str = None,
|
|
622
|
+
execution_context: typing.Union[str, int] = None,
|
|
623
623
|
undo: bool = None,
|
|
624
624
|
):
|
|
625
625
|
"""Deselect control points at the boundary of each selection region
|
|
626
626
|
|
|
627
627
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
628
|
-
:type execution_context: str
|
|
628
|
+
:type execution_context: typing.Union[str, int]
|
|
629
629
|
:type undo: bool
|
|
630
630
|
"""
|
|
631
631
|
|
|
@@ -633,13 +633,13 @@ def select_less(
|
|
|
633
633
|
|
|
634
634
|
def select_linked(
|
|
635
635
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
636
|
-
execution_context: str = None,
|
|
636
|
+
execution_context: typing.Union[str, int] = None,
|
|
637
637
|
undo: bool = None,
|
|
638
638
|
):
|
|
639
639
|
"""Select all control points linked to the current selection
|
|
640
640
|
|
|
641
641
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
642
|
-
:type execution_context: str
|
|
642
|
+
:type execution_context: typing.Union[str, int]
|
|
643
643
|
:type undo: bool
|
|
644
644
|
"""
|
|
645
645
|
|
|
@@ -647,14 +647,14 @@ def select_linked(
|
|
|
647
647
|
|
|
648
648
|
def select_linked_pick(
|
|
649
649
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
650
|
-
execution_context: str = None,
|
|
650
|
+
execution_context: typing.Union[str, int] = None,
|
|
651
651
|
undo: bool = None,
|
|
652
652
|
deselect: typing.Union[bool, typing.Any] = False,
|
|
653
653
|
):
|
|
654
654
|
"""Select all control points linked to already selected ones
|
|
655
655
|
|
|
656
656
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
657
|
-
:type execution_context: str
|
|
657
|
+
:type execution_context: typing.Union[str, int]
|
|
658
658
|
:type undo: bool
|
|
659
659
|
:param deselect: Deselect, Deselect linked control points rather than selecting them
|
|
660
660
|
:type deselect: typing.Union[bool, typing.Any]
|
|
@@ -664,13 +664,13 @@ def select_linked_pick(
|
|
|
664
664
|
|
|
665
665
|
def select_more(
|
|
666
666
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
667
|
-
execution_context: str = None,
|
|
667
|
+
execution_context: typing.Union[str, int] = None,
|
|
668
668
|
undo: bool = None,
|
|
669
669
|
):
|
|
670
670
|
"""Select control points at the boundary of each selection region
|
|
671
671
|
|
|
672
672
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
673
|
-
:type execution_context: str
|
|
673
|
+
:type execution_context: typing.Union[str, int]
|
|
674
674
|
:type undo: bool
|
|
675
675
|
"""
|
|
676
676
|
|
|
@@ -678,13 +678,13 @@ def select_more(
|
|
|
678
678
|
|
|
679
679
|
def select_next(
|
|
680
680
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
681
|
-
execution_context: str = None,
|
|
681
|
+
execution_context: typing.Union[str, int] = None,
|
|
682
682
|
undo: bool = None,
|
|
683
683
|
):
|
|
684
684
|
"""Select control points following already selected ones along the curves
|
|
685
685
|
|
|
686
686
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
687
|
-
:type execution_context: str
|
|
687
|
+
:type execution_context: typing.Union[str, int]
|
|
688
688
|
:type undo: bool
|
|
689
689
|
"""
|
|
690
690
|
|
|
@@ -692,7 +692,7 @@ def select_next(
|
|
|
692
692
|
|
|
693
693
|
def select_nth(
|
|
694
694
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
695
|
-
execution_context: str = None,
|
|
695
|
+
execution_context: typing.Union[str, int] = None,
|
|
696
696
|
undo: bool = None,
|
|
697
697
|
skip: typing.Any = 1,
|
|
698
698
|
nth: typing.Any = 1,
|
|
@@ -701,7 +701,7 @@ def select_nth(
|
|
|
701
701
|
"""Deselect every Nth point starting from the active one
|
|
702
702
|
|
|
703
703
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
704
|
-
:type execution_context: str
|
|
704
|
+
:type execution_context: typing.Union[str, int]
|
|
705
705
|
:type undo: bool
|
|
706
706
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
707
707
|
:type skip: typing.Any
|
|
@@ -715,13 +715,13 @@ def select_nth(
|
|
|
715
715
|
|
|
716
716
|
def select_previous(
|
|
717
717
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
718
|
-
execution_context: str = None,
|
|
718
|
+
execution_context: typing.Union[str, int] = None,
|
|
719
719
|
undo: bool = None,
|
|
720
720
|
):
|
|
721
721
|
"""Select control points preceding already selected ones along the curves
|
|
722
722
|
|
|
723
723
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
724
|
-
:type execution_context: str
|
|
724
|
+
:type execution_context: typing.Union[str, int]
|
|
725
725
|
:type undo: bool
|
|
726
726
|
"""
|
|
727
727
|
|
|
@@ -729,7 +729,7 @@ def select_previous(
|
|
|
729
729
|
|
|
730
730
|
def select_random(
|
|
731
731
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
732
|
-
execution_context: str = None,
|
|
732
|
+
execution_context: typing.Union[str, int] = None,
|
|
733
733
|
undo: bool = None,
|
|
734
734
|
ratio: typing.Any = 0.5,
|
|
735
735
|
seed: typing.Any = 0,
|
|
@@ -738,7 +738,7 @@ def select_random(
|
|
|
738
738
|
"""Randomly select some control points
|
|
739
739
|
|
|
740
740
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
741
|
-
:type execution_context: str
|
|
741
|
+
:type execution_context: typing.Union[str, int]
|
|
742
742
|
:type undo: bool
|
|
743
743
|
:param ratio: Ratio, Portion of items to select randomly
|
|
744
744
|
:type ratio: typing.Any
|
|
@@ -758,13 +758,13 @@ def select_random(
|
|
|
758
758
|
|
|
759
759
|
def select_row(
|
|
760
760
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
761
|
-
execution_context: str = None,
|
|
761
|
+
execution_context: typing.Union[str, int] = None,
|
|
762
762
|
undo: bool = None,
|
|
763
763
|
):
|
|
764
764
|
"""Select a row of control points including active one
|
|
765
765
|
|
|
766
766
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
767
|
-
:type execution_context: str
|
|
767
|
+
:type execution_context: typing.Union[str, int]
|
|
768
768
|
:type undo: bool
|
|
769
769
|
"""
|
|
770
770
|
|
|
@@ -772,7 +772,7 @@ def select_row(
|
|
|
772
772
|
|
|
773
773
|
def select_similar(
|
|
774
774
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
775
|
-
execution_context: str = None,
|
|
775
|
+
execution_context: typing.Union[str, int] = None,
|
|
776
776
|
undo: bool = None,
|
|
777
777
|
type: typing.Any = "WEIGHT",
|
|
778
778
|
compare: typing.Any = "EQUAL",
|
|
@@ -781,7 +781,7 @@ def select_similar(
|
|
|
781
781
|
"""Select similar curve points by property type
|
|
782
782
|
|
|
783
783
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
784
|
-
:type execution_context: str
|
|
784
|
+
:type execution_context: typing.Union[str, int]
|
|
785
785
|
:type undo: bool
|
|
786
786
|
:param type: Type
|
|
787
787
|
:type type: typing.Any
|
|
@@ -795,13 +795,13 @@ def select_similar(
|
|
|
795
795
|
|
|
796
796
|
def separate(
|
|
797
797
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
798
|
-
execution_context: str = None,
|
|
798
|
+
execution_context: typing.Union[str, int] = None,
|
|
799
799
|
undo: bool = None,
|
|
800
800
|
):
|
|
801
801
|
"""Separate selected points from connected unselected points into a new object
|
|
802
802
|
|
|
803
803
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
804
|
-
:type execution_context: str
|
|
804
|
+
:type execution_context: typing.Union[str, int]
|
|
805
805
|
:type undo: bool
|
|
806
806
|
"""
|
|
807
807
|
|
|
@@ -809,13 +809,13 @@ def separate(
|
|
|
809
809
|
|
|
810
810
|
def shade_flat(
|
|
811
811
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
812
|
-
execution_context: str = None,
|
|
812
|
+
execution_context: typing.Union[str, int] = None,
|
|
813
813
|
undo: bool = None,
|
|
814
814
|
):
|
|
815
815
|
"""Set shading to flat
|
|
816
816
|
|
|
817
817
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
818
|
-
:type execution_context: str
|
|
818
|
+
:type execution_context: typing.Union[str, int]
|
|
819
819
|
:type undo: bool
|
|
820
820
|
"""
|
|
821
821
|
|
|
@@ -823,13 +823,13 @@ def shade_flat(
|
|
|
823
823
|
|
|
824
824
|
def shade_smooth(
|
|
825
825
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
826
|
-
execution_context: str = None,
|
|
826
|
+
execution_context: typing.Union[str, int] = None,
|
|
827
827
|
undo: bool = None,
|
|
828
828
|
):
|
|
829
829
|
"""Set shading to smooth
|
|
830
830
|
|
|
831
831
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
832
|
-
:type execution_context: str
|
|
832
|
+
:type execution_context: typing.Union[str, int]
|
|
833
833
|
:type undo: bool
|
|
834
834
|
"""
|
|
835
835
|
|
|
@@ -837,13 +837,13 @@ def shade_smooth(
|
|
|
837
837
|
|
|
838
838
|
def shortest_path_pick(
|
|
839
839
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
840
|
-
execution_context: str = None,
|
|
840
|
+
execution_context: typing.Union[str, int] = None,
|
|
841
841
|
undo: bool = None,
|
|
842
842
|
):
|
|
843
843
|
"""Select shortest path between two selections
|
|
844
844
|
|
|
845
845
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
846
|
-
:type execution_context: str
|
|
846
|
+
:type execution_context: typing.Union[str, int]
|
|
847
847
|
:type undo: bool
|
|
848
848
|
"""
|
|
849
849
|
|
|
@@ -851,13 +851,13 @@ def shortest_path_pick(
|
|
|
851
851
|
|
|
852
852
|
def smooth(
|
|
853
853
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
854
|
-
execution_context: str = None,
|
|
854
|
+
execution_context: typing.Union[str, int] = None,
|
|
855
855
|
undo: bool = None,
|
|
856
856
|
):
|
|
857
857
|
"""Flatten angles of selected points
|
|
858
858
|
|
|
859
859
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
860
|
-
:type execution_context: str
|
|
860
|
+
:type execution_context: typing.Union[str, int]
|
|
861
861
|
:type undo: bool
|
|
862
862
|
"""
|
|
863
863
|
|
|
@@ -865,13 +865,13 @@ def smooth(
|
|
|
865
865
|
|
|
866
866
|
def smooth_radius(
|
|
867
867
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
868
|
-
execution_context: str = None,
|
|
868
|
+
execution_context: typing.Union[str, int] = None,
|
|
869
869
|
undo: bool = None,
|
|
870
870
|
):
|
|
871
871
|
"""Interpolate radii of selected points
|
|
872
872
|
|
|
873
873
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
874
|
-
:type execution_context: str
|
|
874
|
+
:type execution_context: typing.Union[str, int]
|
|
875
875
|
:type undo: bool
|
|
876
876
|
"""
|
|
877
877
|
|
|
@@ -879,13 +879,13 @@ def smooth_radius(
|
|
|
879
879
|
|
|
880
880
|
def smooth_tilt(
|
|
881
881
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
882
|
-
execution_context: str = None,
|
|
882
|
+
execution_context: typing.Union[str, int] = None,
|
|
883
883
|
undo: bool = None,
|
|
884
884
|
):
|
|
885
885
|
"""Interpolate tilt of selected points
|
|
886
886
|
|
|
887
887
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
888
|
-
:type execution_context: str
|
|
888
|
+
:type execution_context: typing.Union[str, int]
|
|
889
889
|
:type undo: bool
|
|
890
890
|
"""
|
|
891
891
|
|
|
@@ -893,13 +893,13 @@ def smooth_tilt(
|
|
|
893
893
|
|
|
894
894
|
def smooth_weight(
|
|
895
895
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
896
|
-
execution_context: str = None,
|
|
896
|
+
execution_context: typing.Union[str, int] = None,
|
|
897
897
|
undo: bool = None,
|
|
898
898
|
):
|
|
899
899
|
"""Interpolate weight of selected points
|
|
900
900
|
|
|
901
901
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
902
|
-
:type execution_context: str
|
|
902
|
+
:type execution_context: typing.Union[str, int]
|
|
903
903
|
:type undo: bool
|
|
904
904
|
"""
|
|
905
905
|
|
|
@@ -907,7 +907,7 @@ def smooth_weight(
|
|
|
907
907
|
|
|
908
908
|
def spin(
|
|
909
909
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
910
|
-
execution_context: str = None,
|
|
910
|
+
execution_context: typing.Union[str, int] = None,
|
|
911
911
|
undo: bool = None,
|
|
912
912
|
center: typing.Any = (0.0, 0.0, 0.0),
|
|
913
913
|
axis: typing.Any = (0.0, 0.0, 0.0),
|
|
@@ -915,7 +915,7 @@ def spin(
|
|
|
915
915
|
"""Extrude selected boundary row around pivot point and current view axis
|
|
916
916
|
|
|
917
917
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
918
|
-
:type execution_context: str
|
|
918
|
+
:type execution_context: typing.Union[str, int]
|
|
919
919
|
:type undo: bool
|
|
920
920
|
:param center: Center, Center in global view space
|
|
921
921
|
:type center: typing.Any
|
|
@@ -927,7 +927,7 @@ def spin(
|
|
|
927
927
|
|
|
928
928
|
def spline_type_set(
|
|
929
929
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
930
|
-
execution_context: str = None,
|
|
930
|
+
execution_context: typing.Union[str, int] = None,
|
|
931
931
|
undo: bool = None,
|
|
932
932
|
type: typing.Any = "POLY",
|
|
933
933
|
use_handles: typing.Union[bool, typing.Any] = False,
|
|
@@ -935,7 +935,7 @@ def spline_type_set(
|
|
|
935
935
|
"""Set type of active spline
|
|
936
936
|
|
|
937
937
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
938
|
-
:type execution_context: str
|
|
938
|
+
:type execution_context: typing.Union[str, int]
|
|
939
939
|
:type undo: bool
|
|
940
940
|
:param type: Type, Spline type
|
|
941
941
|
:type type: typing.Any
|
|
@@ -947,14 +947,14 @@ def spline_type_set(
|
|
|
947
947
|
|
|
948
948
|
def spline_weight_set(
|
|
949
949
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
950
|
-
execution_context: str = None,
|
|
950
|
+
execution_context: typing.Union[str, int] = None,
|
|
951
951
|
undo: bool = None,
|
|
952
952
|
weight: typing.Any = 1.0,
|
|
953
953
|
):
|
|
954
954
|
"""Set softbody goal weight for selected points
|
|
955
955
|
|
|
956
956
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
957
|
-
:type execution_context: str
|
|
957
|
+
:type execution_context: typing.Union[str, int]
|
|
958
958
|
:type undo: bool
|
|
959
959
|
:param weight: Weight
|
|
960
960
|
:type weight: typing.Any
|
|
@@ -964,13 +964,13 @@ def spline_weight_set(
|
|
|
964
964
|
|
|
965
965
|
def split(
|
|
966
966
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
967
|
-
execution_context: str = None,
|
|
967
|
+
execution_context: typing.Union[str, int] = None,
|
|
968
968
|
undo: bool = None,
|
|
969
969
|
):
|
|
970
970
|
"""Split off selected points from connected unselected points
|
|
971
971
|
|
|
972
972
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
973
|
-
:type execution_context: str
|
|
973
|
+
:type execution_context: typing.Union[str, int]
|
|
974
974
|
:type undo: bool
|
|
975
975
|
"""
|
|
976
976
|
|
|
@@ -978,14 +978,14 @@ def split(
|
|
|
978
978
|
|
|
979
979
|
def subdivide(
|
|
980
980
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
981
|
-
execution_context: str = None,
|
|
981
|
+
execution_context: typing.Union[str, int] = None,
|
|
982
982
|
undo: bool = None,
|
|
983
983
|
number_cuts: typing.Any = 1,
|
|
984
984
|
):
|
|
985
985
|
"""Subdivide selected segments
|
|
986
986
|
|
|
987
987
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
988
|
-
:type execution_context: str
|
|
988
|
+
:type execution_context: typing.Union[str, int]
|
|
989
989
|
:type undo: bool
|
|
990
990
|
:param number_cuts: Number of Cuts
|
|
991
991
|
:type number_cuts: typing.Any
|
|
@@ -995,13 +995,13 @@ def subdivide(
|
|
|
995
995
|
|
|
996
996
|
def switch_direction(
|
|
997
997
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
998
|
-
execution_context: str = None,
|
|
998
|
+
execution_context: typing.Union[str, int] = None,
|
|
999
999
|
undo: bool = None,
|
|
1000
1000
|
):
|
|
1001
1001
|
"""Switch direction of selected splines
|
|
1002
1002
|
|
|
1003
1003
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1004
|
-
:type execution_context: str
|
|
1004
|
+
:type execution_context: typing.Union[str, int]
|
|
1005
1005
|
:type undo: bool
|
|
1006
1006
|
"""
|
|
1007
1007
|
|
|
@@ -1009,13 +1009,13 @@ def switch_direction(
|
|
|
1009
1009
|
|
|
1010
1010
|
def tilt_clear(
|
|
1011
1011
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1012
|
-
execution_context: str = None,
|
|
1012
|
+
execution_context: typing.Union[str, int] = None,
|
|
1013
1013
|
undo: bool = None,
|
|
1014
1014
|
):
|
|
1015
1015
|
"""Clear the tilt of selected control points
|
|
1016
1016
|
|
|
1017
1017
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1018
|
-
:type execution_context: str
|
|
1018
|
+
:type execution_context: typing.Union[str, int]
|
|
1019
1019
|
:type undo: bool
|
|
1020
1020
|
"""
|
|
1021
1021
|
|
|
@@ -1023,14 +1023,14 @@ def tilt_clear(
|
|
|
1023
1023
|
|
|
1024
1024
|
def vertex_add(
|
|
1025
1025
|
override_context: typing.Union[dict, bpy.types.Context] = None,
|
|
1026
|
-
execution_context: str = None,
|
|
1026
|
+
execution_context: typing.Union[str, int] = None,
|
|
1027
1027
|
undo: bool = None,
|
|
1028
1028
|
location: typing.Any = (0.0, 0.0, 0.0),
|
|
1029
1029
|
):
|
|
1030
1030
|
"""Add a new control point (linked to only selected end-curve one, if any)
|
|
1031
1031
|
|
|
1032
1032
|
:type override_context: typing.Union[dict, bpy.types.Context]
|
|
1033
|
-
:type execution_context: str
|
|
1033
|
+
:type execution_context: typing.Union[str, int]
|
|
1034
1034
|
:type undo: bool
|
|
1035
1035
|
:param location: Location, Location to add new vertex at
|
|
1036
1036
|
:type location: typing.Any
|