fake-bpy-module 20240927__py3-none-any.whl → 20240929__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.
- bl_ui/generic_ui_list/__init__.pyi +2 -2
- bl_ui/space_dopesheet/__init__.pyi +25 -0
- bl_ui/space_view3d/__init__.pyi +36 -0
- bpy/__init__.pyi +1 -1
- bpy/ops/action/__init__.pyi +76 -76
- bpy/ops/anim/__init__.pyi +144 -120
- 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 +26 -26
- 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 +54 -54
- 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_scene/__init__.pyi +4 -4
- bpy/ops/extensions/__init__.pyi +68 -68
- 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 +284 -284
- bpy/ops/graph/__init__.pyi +130 -130
- bpy/ops/grease_pencil/__init__.pyi +220 -200
- bpy/ops/image/__init__.pyi +98 -98
- bpy/ops/import_anim/__init__.pyi +2 -2
- bpy/ops/import_curve/__init__.pyi +2 -2
- bpy/ops/import_scene/__init__.pyi +4 -4
- 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 +326 -326
- bpy/ops/nla/__init__.pyi +78 -78
- bpy/ops/node/__init__.pyi +230 -230
- bpy/ops/object/__init__.pyi +476 -476
- bpy/ops/outliner/__init__.pyi +142 -142
- bpy/ops/paint/__init__.pyi +108 -108
- 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 +102 -102
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +70 -70
- bpy/ops/ptcache/__init__.pyi +14 -14
- bpy/ops/render/__init__.pyi +26 -26
- bpy/ops/rigidbody/__init__.pyi +26 -26
- bpy/ops/scene/__init__.pyi +74 -74
- bpy/ops/screen/__init__.pyi +78 -78
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +74 -74
- bpy/ops/sculpt_curves/__init__.pyi +8 -8
- bpy/ops/sequencer/__init__.pyi +178 -178
- 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 +68 -68
- 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 +232 -232
- bpy/ops/workspace/__init__.pyi +14 -14
- bpy/ops/world/__init__.pyi +4 -4
- bpy/types/__init__.pyi +449 -226
- bpy/typing/__init__.pyi +1 -0
- bpy_extras/object_utils/__init__.pyi +4 -4
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/RECORD +87 -87
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240927.dist-info → fake_bpy_module-20240929.dist-info}/top_level.txt +0 -0
bpy/ops/curve/__init__.pyi
CHANGED
|
@@ -7,7 +7,7 @@ import bpy.typing
|
|
|
7
7
|
import mathutils
|
|
8
8
|
|
|
9
9
|
def cyclic_toggle(
|
|
10
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
10
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
@@ -15,7 +15,7 @@ def cyclic_toggle(
|
|
|
15
15
|
):
|
|
16
16
|
"""Make active spline closed/opened loop
|
|
17
17
|
|
|
18
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
18
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param direction: Direction, Direction to make surface cyclic in
|
|
@@ -23,31 +23,31 @@ def cyclic_toggle(
|
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
def de_select_first(
|
|
26
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
26
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
27
27
|
execution_context: int | str | None = None,
|
|
28
28
|
undo: bool | None = None,
|
|
29
29
|
):
|
|
30
30
|
"""(De)select first of visible part of each NURBS
|
|
31
31
|
|
|
32
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
32
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
33
33
|
:type execution_context: int | str | None
|
|
34
34
|
:type undo: bool | None
|
|
35
35
|
"""
|
|
36
36
|
|
|
37
37
|
def de_select_last(
|
|
38
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
38
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
39
39
|
execution_context: int | str | None = None,
|
|
40
40
|
undo: bool | None = None,
|
|
41
41
|
):
|
|
42
42
|
"""(De)select last of visible part of each NURBS
|
|
43
43
|
|
|
44
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
44
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
45
45
|
:type execution_context: int | str | None
|
|
46
46
|
:type undo: bool | None
|
|
47
47
|
"""
|
|
48
48
|
|
|
49
49
|
def decimate(
|
|
50
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
50
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
51
51
|
execution_context: int | str | None = None,
|
|
52
52
|
undo: bool | None = None,
|
|
53
53
|
*,
|
|
@@ -55,7 +55,7 @@ def decimate(
|
|
|
55
55
|
):
|
|
56
56
|
"""Simplify selected curves
|
|
57
57
|
|
|
58
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
58
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
59
59
|
:type execution_context: int | str | None
|
|
60
60
|
:type undo: bool | None
|
|
61
61
|
:param ratio: Ratio
|
|
@@ -63,7 +63,7 @@ def decimate(
|
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
65
|
def delete(
|
|
66
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
66
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
67
67
|
execution_context: int | str | None = None,
|
|
68
68
|
undo: bool | None = None,
|
|
69
69
|
*,
|
|
@@ -71,7 +71,7 @@ def delete(
|
|
|
71
71
|
):
|
|
72
72
|
"""Delete selected control points or segments
|
|
73
73
|
|
|
74
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
74
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
75
75
|
:type execution_context: int | str | None
|
|
76
76
|
:type undo: bool | None
|
|
77
77
|
:param type: Type, Which elements to delete
|
|
@@ -79,19 +79,19 @@ def delete(
|
|
|
79
79
|
"""
|
|
80
80
|
|
|
81
81
|
def dissolve_verts(
|
|
82
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
82
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
83
83
|
execution_context: int | str | None = None,
|
|
84
84
|
undo: bool | None = None,
|
|
85
85
|
):
|
|
86
86
|
"""Delete selected control points, correcting surrounding handles
|
|
87
87
|
|
|
88
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
88
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
89
89
|
:type execution_context: int | str | None
|
|
90
90
|
:type undo: bool | None
|
|
91
91
|
"""
|
|
92
92
|
|
|
93
93
|
def draw(
|
|
94
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
94
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
95
95
|
execution_context: int | str | None = None,
|
|
96
96
|
undo: bool | None = None,
|
|
97
97
|
*,
|
|
@@ -105,7 +105,7 @@ def draw(
|
|
|
105
105
|
):
|
|
106
106
|
"""Draw a freehand spline
|
|
107
107
|
|
|
108
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
108
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
109
109
|
:type execution_context: int | str | None
|
|
110
110
|
:type undo: bool | None
|
|
111
111
|
:param error_threshold: Error, Error distance threshold (in object units)
|
|
@@ -123,19 +123,19 @@ def draw(
|
|
|
123
123
|
"""
|
|
124
124
|
|
|
125
125
|
def duplicate(
|
|
126
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
126
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
127
127
|
execution_context: int | str | None = None,
|
|
128
128
|
undo: bool | None = None,
|
|
129
129
|
):
|
|
130
130
|
"""Duplicate selected control points
|
|
131
131
|
|
|
132
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
132
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
133
133
|
:type execution_context: int | str | None
|
|
134
134
|
:type undo: bool | None
|
|
135
135
|
"""
|
|
136
136
|
|
|
137
137
|
def duplicate_move(
|
|
138
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
138
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
139
139
|
execution_context: int | str | None = None,
|
|
140
140
|
undo: bool | None = None,
|
|
141
141
|
*,
|
|
@@ -144,7 +144,7 @@ def duplicate_move(
|
|
|
144
144
|
):
|
|
145
145
|
"""Duplicate curve and move
|
|
146
146
|
|
|
147
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
147
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
148
148
|
:type execution_context: int | str | None
|
|
149
149
|
:type undo: bool | None
|
|
150
150
|
:param CURVE_OT_duplicate: Duplicate Curve, Duplicate selected control points
|
|
@@ -154,7 +154,7 @@ def duplicate_move(
|
|
|
154
154
|
"""
|
|
155
155
|
|
|
156
156
|
def extrude(
|
|
157
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
157
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
158
158
|
execution_context: int | str | None = None,
|
|
159
159
|
undo: bool | None = None,
|
|
160
160
|
*,
|
|
@@ -162,7 +162,7 @@ def extrude(
|
|
|
162
162
|
):
|
|
163
163
|
"""Extrude selected control point(s)
|
|
164
164
|
|
|
165
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
165
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
166
166
|
:type execution_context: int | str | None
|
|
167
167
|
:type undo: bool | None
|
|
168
168
|
:param mode: Mode
|
|
@@ -170,7 +170,7 @@ def extrude(
|
|
|
170
170
|
"""
|
|
171
171
|
|
|
172
172
|
def extrude_move(
|
|
173
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
173
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
174
174
|
execution_context: int | str | None = None,
|
|
175
175
|
undo: bool | None = None,
|
|
176
176
|
*,
|
|
@@ -179,7 +179,7 @@ def extrude_move(
|
|
|
179
179
|
):
|
|
180
180
|
"""Extrude curve and move result
|
|
181
181
|
|
|
182
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
182
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
183
183
|
:type execution_context: int | str | None
|
|
184
184
|
:type undo: bool | None
|
|
185
185
|
:param CURVE_OT_extrude: Extrude, Extrude selected control point(s)
|
|
@@ -189,7 +189,7 @@ def extrude_move(
|
|
|
189
189
|
"""
|
|
190
190
|
|
|
191
191
|
def handle_type_set(
|
|
192
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
192
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
193
193
|
execution_context: int | str | None = None,
|
|
194
194
|
undo: bool | None = None,
|
|
195
195
|
*,
|
|
@@ -200,7 +200,7 @@ def handle_type_set(
|
|
|
200
200
|
):
|
|
201
201
|
"""Set type of handles for selected control points
|
|
202
202
|
|
|
203
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
203
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
204
204
|
:type execution_context: int | str | None
|
|
205
205
|
:type undo: bool | None
|
|
206
206
|
:param type: Type, Spline type
|
|
@@ -208,7 +208,7 @@ def handle_type_set(
|
|
|
208
208
|
"""
|
|
209
209
|
|
|
210
210
|
def hide(
|
|
211
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
211
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
212
212
|
execution_context: int | str | None = None,
|
|
213
213
|
undo: bool | None = None,
|
|
214
214
|
*,
|
|
@@ -216,7 +216,7 @@ def hide(
|
|
|
216
216
|
):
|
|
217
217
|
"""Hide (un)selected control points
|
|
218
218
|
|
|
219
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
219
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
220
220
|
:type execution_context: int | str | None
|
|
221
221
|
:type undo: bool | None
|
|
222
222
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
@@ -224,31 +224,31 @@ def hide(
|
|
|
224
224
|
"""
|
|
225
225
|
|
|
226
226
|
def make_segment(
|
|
227
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
227
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
228
228
|
execution_context: int | str | None = None,
|
|
229
229
|
undo: bool | None = None,
|
|
230
230
|
):
|
|
231
231
|
"""Join two curves by their selected ends
|
|
232
232
|
|
|
233
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
233
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
234
234
|
:type execution_context: int | str | None
|
|
235
235
|
:type undo: bool | None
|
|
236
236
|
"""
|
|
237
237
|
|
|
238
238
|
def match_texture_space(
|
|
239
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
239
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
240
240
|
execution_context: int | str | None = None,
|
|
241
241
|
undo: bool | None = None,
|
|
242
242
|
):
|
|
243
243
|
"""Match texture space to object's bounding box
|
|
244
244
|
|
|
245
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
245
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
246
246
|
:type execution_context: int | str | None
|
|
247
247
|
:type undo: bool | None
|
|
248
248
|
"""
|
|
249
249
|
|
|
250
250
|
def normals_make_consistent(
|
|
251
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
251
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
252
252
|
execution_context: int | str | None = None,
|
|
253
253
|
undo: bool | None = None,
|
|
254
254
|
*,
|
|
@@ -256,7 +256,7 @@ def normals_make_consistent(
|
|
|
256
256
|
):
|
|
257
257
|
"""Recalculate the direction of selected handles
|
|
258
258
|
|
|
259
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
259
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
260
260
|
:type execution_context: int | str | None
|
|
261
261
|
:type undo: bool | None
|
|
262
262
|
:param calc_length: Length, Recalculate handle length
|
|
@@ -264,7 +264,7 @@ def normals_make_consistent(
|
|
|
264
264
|
"""
|
|
265
265
|
|
|
266
266
|
def pen(
|
|
267
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
267
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
268
268
|
execution_context: int | str | None = None,
|
|
269
269
|
undo: bool | None = None,
|
|
270
270
|
*,
|
|
@@ -287,7 +287,7 @@ def pen(
|
|
|
287
287
|
):
|
|
288
288
|
"""Construct and edit splines
|
|
289
289
|
|
|
290
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
290
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
291
291
|
:type execution_context: int | str | None
|
|
292
292
|
:type undo: bool | None
|
|
293
293
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
@@ -334,7 +334,7 @@ def pen(
|
|
|
334
334
|
"""
|
|
335
335
|
|
|
336
336
|
def primitive_bezier_circle_add(
|
|
337
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
337
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
338
338
|
execution_context: int | str | None = None,
|
|
339
339
|
undo: bool | None = None,
|
|
340
340
|
*,
|
|
@@ -355,7 +355,7 @@ def primitive_bezier_circle_add(
|
|
|
355
355
|
):
|
|
356
356
|
"""Construct a Bézier Circle
|
|
357
357
|
|
|
358
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
358
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
359
359
|
:type execution_context: int | str | None
|
|
360
360
|
:type undo: bool | None
|
|
361
361
|
:param radius: Radius
|
|
@@ -382,7 +382,7 @@ def primitive_bezier_circle_add(
|
|
|
382
382
|
"""
|
|
383
383
|
|
|
384
384
|
def primitive_bezier_curve_add(
|
|
385
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
385
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
386
386
|
execution_context: int | str | None = None,
|
|
387
387
|
undo: bool | None = None,
|
|
388
388
|
*,
|
|
@@ -403,7 +403,7 @@ def primitive_bezier_curve_add(
|
|
|
403
403
|
):
|
|
404
404
|
"""Construct a Bézier Curve
|
|
405
405
|
|
|
406
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
406
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
407
407
|
:type execution_context: int | str | None
|
|
408
408
|
:type undo: bool | None
|
|
409
409
|
:param radius: Radius
|
|
@@ -430,7 +430,7 @@ def primitive_bezier_curve_add(
|
|
|
430
430
|
"""
|
|
431
431
|
|
|
432
432
|
def primitive_nurbs_circle_add(
|
|
433
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
433
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
434
434
|
execution_context: int | str | None = None,
|
|
435
435
|
undo: bool | None = None,
|
|
436
436
|
*,
|
|
@@ -451,7 +451,7 @@ def primitive_nurbs_circle_add(
|
|
|
451
451
|
):
|
|
452
452
|
"""Construct a Nurbs Circle
|
|
453
453
|
|
|
454
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
454
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
455
455
|
:type execution_context: int | str | None
|
|
456
456
|
:type undo: bool | None
|
|
457
457
|
:param radius: Radius
|
|
@@ -478,7 +478,7 @@ def primitive_nurbs_circle_add(
|
|
|
478
478
|
"""
|
|
479
479
|
|
|
480
480
|
def primitive_nurbs_curve_add(
|
|
481
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
481
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
482
482
|
execution_context: int | str | None = None,
|
|
483
483
|
undo: bool | None = None,
|
|
484
484
|
*,
|
|
@@ -499,7 +499,7 @@ def primitive_nurbs_curve_add(
|
|
|
499
499
|
):
|
|
500
500
|
"""Construct a Nurbs Curve
|
|
501
501
|
|
|
502
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
502
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
503
503
|
:type execution_context: int | str | None
|
|
504
504
|
:type undo: bool | None
|
|
505
505
|
:param radius: Radius
|
|
@@ -526,7 +526,7 @@ def primitive_nurbs_curve_add(
|
|
|
526
526
|
"""
|
|
527
527
|
|
|
528
528
|
def primitive_nurbs_path_add(
|
|
529
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
529
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
530
530
|
execution_context: int | str | None = None,
|
|
531
531
|
undo: bool | None = None,
|
|
532
532
|
*,
|
|
@@ -547,7 +547,7 @@ def primitive_nurbs_path_add(
|
|
|
547
547
|
):
|
|
548
548
|
"""Construct a Path
|
|
549
549
|
|
|
550
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
550
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
551
551
|
:type execution_context: int | str | None
|
|
552
552
|
:type undo: bool | None
|
|
553
553
|
:param radius: Radius
|
|
@@ -574,7 +574,7 @@ def primitive_nurbs_path_add(
|
|
|
574
574
|
"""
|
|
575
575
|
|
|
576
576
|
def radius_set(
|
|
577
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
577
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
578
578
|
execution_context: int | str | None = None,
|
|
579
579
|
undo: bool | None = None,
|
|
580
580
|
*,
|
|
@@ -582,7 +582,7 @@ def radius_set(
|
|
|
582
582
|
):
|
|
583
583
|
"""Set per-point radius which is used for bevel tapering
|
|
584
584
|
|
|
585
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
585
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
586
586
|
:type execution_context: int | str | None
|
|
587
587
|
:type undo: bool | None
|
|
588
588
|
:param radius: Radius
|
|
@@ -590,7 +590,7 @@ def radius_set(
|
|
|
590
590
|
"""
|
|
591
591
|
|
|
592
592
|
def reveal(
|
|
593
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
593
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
594
594
|
execution_context: int | str | None = None,
|
|
595
595
|
undo: bool | None = None,
|
|
596
596
|
*,
|
|
@@ -598,7 +598,7 @@ def reveal(
|
|
|
598
598
|
):
|
|
599
599
|
"""Reveal hidden control points
|
|
600
600
|
|
|
601
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
601
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
602
602
|
:type execution_context: int | str | None
|
|
603
603
|
:type undo: bool | None
|
|
604
604
|
:param select: Select
|
|
@@ -606,7 +606,7 @@ def reveal(
|
|
|
606
606
|
"""
|
|
607
607
|
|
|
608
608
|
def select_all(
|
|
609
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
609
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
610
610
|
execution_context: int | str | None = None,
|
|
611
611
|
undo: bool | None = None,
|
|
612
612
|
*,
|
|
@@ -614,7 +614,7 @@ def select_all(
|
|
|
614
614
|
):
|
|
615
615
|
"""(De)select all control points
|
|
616
616
|
|
|
617
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
617
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
618
618
|
:type execution_context: int | str | None
|
|
619
619
|
:type undo: bool | None
|
|
620
620
|
:param action: Action, Selection action to execute
|
|
@@ -634,31 +634,31 @@ def select_all(
|
|
|
634
634
|
"""
|
|
635
635
|
|
|
636
636
|
def select_less(
|
|
637
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
637
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
638
638
|
execution_context: int | str | None = None,
|
|
639
639
|
undo: bool | None = None,
|
|
640
640
|
):
|
|
641
641
|
"""Deselect control points at the boundary of each selection region
|
|
642
642
|
|
|
643
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
643
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
644
644
|
:type execution_context: int | str | None
|
|
645
645
|
:type undo: bool | None
|
|
646
646
|
"""
|
|
647
647
|
|
|
648
648
|
def select_linked(
|
|
649
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
649
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
650
650
|
execution_context: int | str | None = None,
|
|
651
651
|
undo: bool | None = None,
|
|
652
652
|
):
|
|
653
653
|
"""Select all control points linked to the current selection
|
|
654
654
|
|
|
655
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
655
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
656
656
|
:type execution_context: int | str | None
|
|
657
657
|
:type undo: bool | None
|
|
658
658
|
"""
|
|
659
659
|
|
|
660
660
|
def select_linked_pick(
|
|
661
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
661
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
662
662
|
execution_context: int | str | None = None,
|
|
663
663
|
undo: bool | None = None,
|
|
664
664
|
*,
|
|
@@ -666,7 +666,7 @@ def select_linked_pick(
|
|
|
666
666
|
):
|
|
667
667
|
"""Select all control points linked to already selected ones
|
|
668
668
|
|
|
669
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
669
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
670
670
|
:type execution_context: int | str | None
|
|
671
671
|
:type undo: bool | None
|
|
672
672
|
:param deselect: Deselect, Deselect linked control points rather than selecting them
|
|
@@ -674,31 +674,31 @@ def select_linked_pick(
|
|
|
674
674
|
"""
|
|
675
675
|
|
|
676
676
|
def select_more(
|
|
677
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
677
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
678
678
|
execution_context: int | str | None = None,
|
|
679
679
|
undo: bool | None = None,
|
|
680
680
|
):
|
|
681
681
|
"""Select control points at the boundary of each selection region
|
|
682
682
|
|
|
683
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
683
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
684
684
|
:type execution_context: int | str | None
|
|
685
685
|
:type undo: bool | None
|
|
686
686
|
"""
|
|
687
687
|
|
|
688
688
|
def select_next(
|
|
689
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
689
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
690
690
|
execution_context: int | str | None = None,
|
|
691
691
|
undo: bool | None = None,
|
|
692
692
|
):
|
|
693
693
|
"""Select control points following already selected ones along the curves
|
|
694
694
|
|
|
695
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
695
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
696
696
|
:type execution_context: int | str | None
|
|
697
697
|
:type undo: bool | None
|
|
698
698
|
"""
|
|
699
699
|
|
|
700
700
|
def select_nth(
|
|
701
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
701
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
702
702
|
execution_context: int | str | None = None,
|
|
703
703
|
undo: bool | None = None,
|
|
704
704
|
*,
|
|
@@ -708,7 +708,7 @@ def select_nth(
|
|
|
708
708
|
):
|
|
709
709
|
"""Deselect every Nth point starting from the active one
|
|
710
710
|
|
|
711
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
711
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
712
712
|
:type execution_context: int | str | None
|
|
713
713
|
:type undo: bool | None
|
|
714
714
|
:param skip: Deselected, Number of deselected elements in the repetitive sequence
|
|
@@ -720,19 +720,19 @@ def select_nth(
|
|
|
720
720
|
"""
|
|
721
721
|
|
|
722
722
|
def select_previous(
|
|
723
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
723
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
724
724
|
execution_context: int | str | None = None,
|
|
725
725
|
undo: bool | None = None,
|
|
726
726
|
):
|
|
727
727
|
"""Select control points preceding already selected ones along the curves
|
|
728
728
|
|
|
729
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
729
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
730
730
|
:type execution_context: int | str | None
|
|
731
731
|
:type undo: bool | None
|
|
732
732
|
"""
|
|
733
733
|
|
|
734
734
|
def select_random(
|
|
735
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
735
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
736
736
|
execution_context: int | str | None = None,
|
|
737
737
|
undo: bool | None = None,
|
|
738
738
|
*,
|
|
@@ -742,7 +742,7 @@ def select_random(
|
|
|
742
742
|
):
|
|
743
743
|
"""Randomly select some control points
|
|
744
744
|
|
|
745
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
745
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
746
746
|
:type execution_context: int | str | None
|
|
747
747
|
:type undo: bool | None
|
|
748
748
|
:param ratio: Ratio, Portion of items to select randomly
|
|
@@ -760,19 +760,19 @@ def select_random(
|
|
|
760
760
|
"""
|
|
761
761
|
|
|
762
762
|
def select_row(
|
|
763
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
763
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
764
764
|
execution_context: int | str | None = None,
|
|
765
765
|
undo: bool | None = None,
|
|
766
766
|
):
|
|
767
767
|
"""Select a row of control points including active one
|
|
768
768
|
|
|
769
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
769
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
770
770
|
:type execution_context: int | str | None
|
|
771
771
|
:type undo: bool | None
|
|
772
772
|
"""
|
|
773
773
|
|
|
774
774
|
def select_similar(
|
|
775
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
775
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
776
776
|
execution_context: int | str | None = None,
|
|
777
777
|
undo: bool | None = None,
|
|
778
778
|
*,
|
|
@@ -782,7 +782,7 @@ def select_similar(
|
|
|
782
782
|
):
|
|
783
783
|
"""Select similar curve points by property type
|
|
784
784
|
|
|
785
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
785
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
786
786
|
:type execution_context: int | str | None
|
|
787
787
|
:type undo: bool | None
|
|
788
788
|
:param type: Type
|
|
@@ -794,103 +794,103 @@ def select_similar(
|
|
|
794
794
|
"""
|
|
795
795
|
|
|
796
796
|
def separate(
|
|
797
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
797
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
798
798
|
execution_context: int | str | None = None,
|
|
799
799
|
undo: bool | None = None,
|
|
800
800
|
):
|
|
801
801
|
"""Separate selected points from connected unselected points into a new object
|
|
802
802
|
|
|
803
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
803
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
804
804
|
:type execution_context: int | str | None
|
|
805
805
|
:type undo: bool | None
|
|
806
806
|
"""
|
|
807
807
|
|
|
808
808
|
def shade_flat(
|
|
809
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
809
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
810
810
|
execution_context: int | str | None = None,
|
|
811
811
|
undo: bool | None = None,
|
|
812
812
|
):
|
|
813
813
|
"""Set shading to flat
|
|
814
814
|
|
|
815
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
815
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
816
816
|
:type execution_context: int | str | None
|
|
817
817
|
:type undo: bool | None
|
|
818
818
|
"""
|
|
819
819
|
|
|
820
820
|
def shade_smooth(
|
|
821
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
821
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
822
822
|
execution_context: int | str | None = None,
|
|
823
823
|
undo: bool | None = None,
|
|
824
824
|
):
|
|
825
825
|
"""Set shading to smooth
|
|
826
826
|
|
|
827
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
827
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
828
828
|
:type execution_context: int | str | None
|
|
829
829
|
:type undo: bool | None
|
|
830
830
|
"""
|
|
831
831
|
|
|
832
832
|
def shortest_path_pick(
|
|
833
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
833
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
834
834
|
execution_context: int | str | None = None,
|
|
835
835
|
undo: bool | None = None,
|
|
836
836
|
):
|
|
837
837
|
"""Select shortest path between two selections
|
|
838
838
|
|
|
839
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
839
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
840
840
|
:type execution_context: int | str | None
|
|
841
841
|
:type undo: bool | None
|
|
842
842
|
"""
|
|
843
843
|
|
|
844
844
|
def smooth(
|
|
845
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
845
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
846
846
|
execution_context: int | str | None = None,
|
|
847
847
|
undo: bool | None = None,
|
|
848
848
|
):
|
|
849
849
|
"""Flatten angles of selected points
|
|
850
850
|
|
|
851
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
851
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
852
852
|
:type execution_context: int | str | None
|
|
853
853
|
:type undo: bool | None
|
|
854
854
|
"""
|
|
855
855
|
|
|
856
856
|
def smooth_radius(
|
|
857
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
857
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
858
858
|
execution_context: int | str | None = None,
|
|
859
859
|
undo: bool | None = None,
|
|
860
860
|
):
|
|
861
861
|
"""Interpolate radii of selected points
|
|
862
862
|
|
|
863
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
863
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
864
864
|
:type execution_context: int | str | None
|
|
865
865
|
:type undo: bool | None
|
|
866
866
|
"""
|
|
867
867
|
|
|
868
868
|
def smooth_tilt(
|
|
869
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
869
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
870
870
|
execution_context: int | str | None = None,
|
|
871
871
|
undo: bool | None = None,
|
|
872
872
|
):
|
|
873
873
|
"""Interpolate tilt of selected points
|
|
874
874
|
|
|
875
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
875
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
876
876
|
:type execution_context: int | str | None
|
|
877
877
|
:type undo: bool | None
|
|
878
878
|
"""
|
|
879
879
|
|
|
880
880
|
def smooth_weight(
|
|
881
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
881
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
882
882
|
execution_context: int | str | None = None,
|
|
883
883
|
undo: bool | None = None,
|
|
884
884
|
):
|
|
885
885
|
"""Interpolate weight of selected points
|
|
886
886
|
|
|
887
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
887
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
888
888
|
:type execution_context: int | str | None
|
|
889
889
|
:type undo: bool | None
|
|
890
890
|
"""
|
|
891
891
|
|
|
892
892
|
def spin(
|
|
893
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
893
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
894
894
|
execution_context: int | str | None = None,
|
|
895
895
|
undo: bool | None = None,
|
|
896
896
|
*,
|
|
@@ -899,7 +899,7 @@ def spin(
|
|
|
899
899
|
):
|
|
900
900
|
"""Extrude selected boundary row around pivot point and current view axis
|
|
901
901
|
|
|
902
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
902
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
903
903
|
:type execution_context: int | str | None
|
|
904
904
|
:type undo: bool | None
|
|
905
905
|
:param center: Center, Center in global view space
|
|
@@ -909,7 +909,7 @@ def spin(
|
|
|
909
909
|
"""
|
|
910
910
|
|
|
911
911
|
def spline_type_set(
|
|
912
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
912
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
913
913
|
execution_context: int | str | None = None,
|
|
914
914
|
undo: bool | None = None,
|
|
915
915
|
*,
|
|
@@ -918,7 +918,7 @@ def spline_type_set(
|
|
|
918
918
|
):
|
|
919
919
|
"""Set type of active spline
|
|
920
920
|
|
|
921
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
921
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
922
922
|
:type execution_context: int | str | None
|
|
923
923
|
:type undo: bool | None
|
|
924
924
|
:param type: Type, Spline type
|
|
@@ -928,7 +928,7 @@ def spline_type_set(
|
|
|
928
928
|
"""
|
|
929
929
|
|
|
930
930
|
def spline_weight_set(
|
|
931
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
931
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
932
932
|
execution_context: int | str | None = None,
|
|
933
933
|
undo: bool | None = None,
|
|
934
934
|
*,
|
|
@@ -936,7 +936,7 @@ def spline_weight_set(
|
|
|
936
936
|
):
|
|
937
937
|
"""Set softbody goal weight for selected points
|
|
938
938
|
|
|
939
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
939
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
940
940
|
:type execution_context: int | str | None
|
|
941
941
|
:type undo: bool | None
|
|
942
942
|
:param weight: Weight
|
|
@@ -944,19 +944,19 @@ def spline_weight_set(
|
|
|
944
944
|
"""
|
|
945
945
|
|
|
946
946
|
def split(
|
|
947
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
947
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
948
948
|
execution_context: int | str | None = None,
|
|
949
949
|
undo: bool | None = None,
|
|
950
950
|
):
|
|
951
951
|
"""Split off selected points from connected unselected points
|
|
952
952
|
|
|
953
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
953
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
954
954
|
:type execution_context: int | str | None
|
|
955
955
|
:type undo: bool | None
|
|
956
956
|
"""
|
|
957
957
|
|
|
958
958
|
def subdivide(
|
|
959
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
959
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
960
960
|
execution_context: int | str | None = None,
|
|
961
961
|
undo: bool | None = None,
|
|
962
962
|
*,
|
|
@@ -964,7 +964,7 @@ def subdivide(
|
|
|
964
964
|
):
|
|
965
965
|
"""Subdivide selected segments
|
|
966
966
|
|
|
967
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
967
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
968
968
|
:type execution_context: int | str | None
|
|
969
969
|
:type undo: bool | None
|
|
970
970
|
:param number_cuts: Number of Cuts
|
|
@@ -972,31 +972,31 @@ def subdivide(
|
|
|
972
972
|
"""
|
|
973
973
|
|
|
974
974
|
def switch_direction(
|
|
975
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
975
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
976
976
|
execution_context: int | str | None = None,
|
|
977
977
|
undo: bool | None = None,
|
|
978
978
|
):
|
|
979
979
|
"""Switch direction of selected splines
|
|
980
980
|
|
|
981
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
981
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
982
982
|
:type execution_context: int | str | None
|
|
983
983
|
:type undo: bool | None
|
|
984
984
|
"""
|
|
985
985
|
|
|
986
986
|
def tilt_clear(
|
|
987
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
987
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
988
988
|
execution_context: int | str | None = None,
|
|
989
989
|
undo: bool | None = None,
|
|
990
990
|
):
|
|
991
991
|
"""Clear the tilt of selected control points
|
|
992
992
|
|
|
993
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
993
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
994
994
|
:type execution_context: int | str | None
|
|
995
995
|
:type undo: bool | None
|
|
996
996
|
"""
|
|
997
997
|
|
|
998
998
|
def vertex_add(
|
|
999
|
-
override_context: bpy.types.Context | dict[str, typing.Any] = None,
|
|
999
|
+
override_context: bpy.types.Context | dict[str, typing.Any] | None = None,
|
|
1000
1000
|
execution_context: int | str | None = None,
|
|
1001
1001
|
undo: bool | None = None,
|
|
1002
1002
|
*,
|
|
@@ -1008,7 +1008,7 @@ def vertex_add(
|
|
|
1008
1008
|
):
|
|
1009
1009
|
"""Add a new control point (linked to only selected end-curve one, if any)
|
|
1010
1010
|
|
|
1011
|
-
:type override_context: bpy.types.Context | dict[str, typing.Any]
|
|
1011
|
+
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1012
1012
|
:type execution_context: int | str | None
|
|
1013
1013
|
:type undo: bool | None
|
|
1014
1014
|
:param location: Location, Location to add new vertex at
|