fake-bpy-module 20240620__py3-none-any.whl → 20240621__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/space_userpref/__init__.pyi +225 -0
- bpy/ops/action/__init__.pyi +50 -50
- bpy/ops/anim/__init__.pyi +94 -94
- bpy/ops/armature/__init__.pyi +54 -54
- bpy/ops/asset/__init__.pyi +50 -50
- bpy/ops/brush/__init__.pyi +10 -10
- bpy/ops/buttons/__init__.pyi +88 -88
- bpy/ops/cachefile/__init__.pyi +88 -88
- bpy/ops/camera/__init__.pyi +14 -14
- bpy/ops/clip/__init__.pyi +175 -174
- bpy/ops/cloth/__init__.pyi +6 -6
- bpy/ops/collection/__init__.pyi +8 -8
- bpy/ops/console/__init__.pyi +26 -26
- bpy/ops/constraint/__init__.pyi +42 -42
- bpy/ops/curve/__init__.pyi +167 -122
- bpy/ops/curves/__init__.pyi +75 -58
- bpy/ops/cycles/__init__.pyi +10 -10
- bpy/ops/ed/__init__.pyi +50 -50
- bpy/ops/export_anim/__init__.pyi +14 -14
- bpy/ops/export_scene/__init__.pyi +250 -250
- bpy/ops/extensions/__init__.pyi +73 -73
- bpy/ops/file/__init__.pyi +94 -94
- bpy/ops/fluid/__init__.pyi +6 -6
- bpy/ops/font/__init__.pyi +100 -100
- bpy/ops/geometry/__init__.pyi +20 -20
- bpy/ops/gizmogroup/__init__.pyi +10 -10
- bpy/ops/gpencil/__init__.pyi +411 -410
- bpy/ops/graph/__init__.pyi +194 -194
- bpy/ops/grease_pencil/__init__.pyi +100 -100
- bpy/ops/image/__init__.pyi +399 -390
- bpy/ops/import_anim/__init__.pyi +16 -16
- bpy/ops/import_curve/__init__.pyi +4 -4
- bpy/ops/import_scene/__init__.pyi +56 -56
- bpy/ops/info/__init__.pyi +14 -14
- bpy/ops/lattice/__init__.pyi +8 -8
- bpy/ops/marker/__init__.pyi +34 -34
- bpy/ops/mask/__init__.pyi +63 -62
- bpy/ops/mball/__init__.pyi +12 -12
- bpy/ops/mesh/__init__.pyi +893 -790
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1013 -840
- bpy/ops/outliner/__init__.pyi +44 -44
- bpy/ops/paint/__init__.pyi +169 -168
- bpy/ops/paintcurve/__init__.pyi +12 -12
- bpy/ops/palette/__init__.pyi +4 -4
- bpy/ops/particle/__init__.pyi +34 -34
- bpy/ops/pose/__init__.pyi +60 -60
- bpy/ops/poselib/__init__.pyi +18 -18
- bpy/ops/preferences/__init__.pyi +150 -150
- bpy/ops/ptcache/__init__.pyi +4 -4
- bpy/ops/render/__init__.pyi +56 -56
- bpy/ops/rigidbody/__init__.pyi +8 -8
- bpy/ops/scene/__init__.pyi +20 -20
- bpy/ops/screen/__init__.pyi +128 -128
- bpy/ops/script/__init__.pyi +6 -6
- bpy/ops/sculpt/__init__.pyi +207 -202
- bpy/ops/sculpt_curves/__init__.pyi +12 -12
- bpy/ops/sequencer/__init__.pyi +465 -464
- bpy/ops/sound/__init__.pyi +154 -154
- bpy/ops/spreadsheet/__init__.pyi +6 -6
- bpy/ops/surface/__init__.pyi +109 -60
- bpy/ops/text/__init__.pyi +110 -110
- bpy/ops/text_editor/__init__.pyi +6 -6
- bpy/ops/transform/__init__.pyi +628 -566
- bpy/ops/ui/__init__.pyi +25 -24
- bpy/ops/uilist/__init__.pyi +12 -12
- bpy/ops/uv/__init__.pyi +235 -234
- bpy/ops/view2d/__init__.pyi +72 -72
- bpy/ops/view3d/__init__.pyi +144 -144
- bpy/ops/wm/__init__.pyi +1813 -1806
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +1611 -1802
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +77 -77
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240620.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
bpy/ops/mask/__init__.pyi
CHANGED
|
@@ -2,6 +2,7 @@ import typing
|
|
|
2
2
|
import collections.abc
|
|
3
3
|
import bpy.ops.transform
|
|
4
4
|
import bpy.types
|
|
5
|
+
import mathutils
|
|
5
6
|
|
|
6
7
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
7
8
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -11,7 +12,7 @@ def add_feather_vertex(
|
|
|
11
12
|
execution_context: int | str | None = None,
|
|
12
13
|
undo: bool | None = None,
|
|
13
14
|
*,
|
|
14
|
-
location:
|
|
15
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
15
16
|
):
|
|
16
17
|
"""Add vertex to feather
|
|
17
18
|
|
|
@@ -19,7 +20,7 @@ def add_feather_vertex(
|
|
|
19
20
|
:type execution_context: int | str | None
|
|
20
21
|
:type undo: bool | None
|
|
21
22
|
:param location: Location, Location of vertex in normalized space
|
|
22
|
-
:type location:
|
|
23
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
23
24
|
"""
|
|
24
25
|
|
|
25
26
|
...
|
|
@@ -50,7 +51,7 @@ def add_vertex(
|
|
|
50
51
|
execution_context: int | str | None = None,
|
|
51
52
|
undo: bool | None = None,
|
|
52
53
|
*,
|
|
53
|
-
location:
|
|
54
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
54
55
|
):
|
|
55
56
|
"""Add vertex to active spline
|
|
56
57
|
|
|
@@ -58,7 +59,7 @@ def add_vertex(
|
|
|
58
59
|
:type execution_context: int | str | None
|
|
59
60
|
:type undo: bool | None
|
|
60
61
|
:param location: Location, Location of vertex in normalized space
|
|
61
|
-
:type location:
|
|
62
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
62
63
|
"""
|
|
63
64
|
|
|
64
65
|
...
|
|
@@ -117,7 +118,7 @@ def delete(
|
|
|
117
118
|
execution_context: int | str | None = None,
|
|
118
119
|
undo: bool | None = None,
|
|
119
120
|
*,
|
|
120
|
-
confirm: bool |
|
|
121
|
+
confirm: bool | None = True,
|
|
121
122
|
):
|
|
122
123
|
"""Delete selected control points or splines
|
|
123
124
|
|
|
@@ -125,7 +126,7 @@ def delete(
|
|
|
125
126
|
:type execution_context: int | str | None
|
|
126
127
|
:type undo: bool | None
|
|
127
128
|
:param confirm: Confirm, Prompt for confirmation
|
|
128
|
-
:type confirm: bool |
|
|
129
|
+
:type confirm: bool | None
|
|
129
130
|
"""
|
|
130
131
|
|
|
131
132
|
...
|
|
@@ -202,7 +203,7 @@ def hide_view_clear(
|
|
|
202
203
|
execution_context: int | str | None = None,
|
|
203
204
|
undo: bool | None = None,
|
|
204
205
|
*,
|
|
205
|
-
select: bool |
|
|
206
|
+
select: bool | None = True,
|
|
206
207
|
):
|
|
207
208
|
"""Reveal temporarily hidden mask layers
|
|
208
209
|
|
|
@@ -210,7 +211,7 @@ def hide_view_clear(
|
|
|
210
211
|
:type execution_context: int | str | None
|
|
211
212
|
:type undo: bool | None
|
|
212
213
|
:param select: Select
|
|
213
|
-
:type select: bool |
|
|
214
|
+
:type select: bool | None
|
|
214
215
|
"""
|
|
215
216
|
|
|
216
217
|
...
|
|
@@ -220,7 +221,7 @@ def hide_view_set(
|
|
|
220
221
|
execution_context: int | str | None = None,
|
|
221
222
|
undo: bool | None = None,
|
|
222
223
|
*,
|
|
223
|
-
unselected: bool |
|
|
224
|
+
unselected: bool | None = False,
|
|
224
225
|
):
|
|
225
226
|
"""Temporarily hide mask layers
|
|
226
227
|
|
|
@@ -228,7 +229,7 @@ def hide_view_set(
|
|
|
228
229
|
:type execution_context: int | str | None
|
|
229
230
|
:type undo: bool | None
|
|
230
231
|
:param unselected: Unselected, Hide unselected rather than selected layers
|
|
231
|
-
:type unselected: bool |
|
|
232
|
+
:type unselected: bool | None
|
|
232
233
|
"""
|
|
233
234
|
|
|
234
235
|
...
|
|
@@ -256,7 +257,7 @@ def layer_new(
|
|
|
256
257
|
execution_context: int | str | None = None,
|
|
257
258
|
undo: bool | None = None,
|
|
258
259
|
*,
|
|
259
|
-
name: str
|
|
260
|
+
name: str = "",
|
|
260
261
|
):
|
|
261
262
|
"""Add new mask layer for masking
|
|
262
263
|
|
|
@@ -264,7 +265,7 @@ def layer_new(
|
|
|
264
265
|
:type execution_context: int | str | None
|
|
265
266
|
:type undo: bool | None
|
|
266
267
|
:param name: Name, Name of new mask layer
|
|
267
|
-
:type name: str
|
|
268
|
+
:type name: str
|
|
268
269
|
"""
|
|
269
270
|
|
|
270
271
|
...
|
|
@@ -288,7 +289,7 @@ def new(
|
|
|
288
289
|
execution_context: int | str | None = None,
|
|
289
290
|
undo: bool | None = None,
|
|
290
291
|
*,
|
|
291
|
-
name: str
|
|
292
|
+
name: str = "",
|
|
292
293
|
):
|
|
293
294
|
"""Create new mask
|
|
294
295
|
|
|
@@ -296,7 +297,7 @@ def new(
|
|
|
296
297
|
:type execution_context: int | str | None
|
|
297
298
|
:type undo: bool | None
|
|
298
299
|
:param name: Name, Name of new mask
|
|
299
|
-
:type name: str
|
|
300
|
+
:type name: str
|
|
300
301
|
"""
|
|
301
302
|
|
|
302
303
|
...
|
|
@@ -362,8 +363,8 @@ def primitive_circle_add(
|
|
|
362
363
|
execution_context: int | str | None = None,
|
|
363
364
|
undo: bool | None = None,
|
|
364
365
|
*,
|
|
365
|
-
size:
|
|
366
|
-
location:
|
|
366
|
+
size: float | None = 100.0,
|
|
367
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
367
368
|
):
|
|
368
369
|
"""Add new circle-shaped spline
|
|
369
370
|
|
|
@@ -371,9 +372,9 @@ def primitive_circle_add(
|
|
|
371
372
|
:type execution_context: int | str | None
|
|
372
373
|
:type undo: bool | None
|
|
373
374
|
:param size: Size, Size of new circle
|
|
374
|
-
:type size:
|
|
375
|
+
:type size: float | None
|
|
375
376
|
:param location: Location, Location of new circle
|
|
376
|
-
:type location:
|
|
377
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
377
378
|
"""
|
|
378
379
|
|
|
379
380
|
...
|
|
@@ -383,8 +384,8 @@ def primitive_square_add(
|
|
|
383
384
|
execution_context: int | str | None = None,
|
|
384
385
|
undo: bool | None = None,
|
|
385
386
|
*,
|
|
386
|
-
size:
|
|
387
|
-
location:
|
|
387
|
+
size: float | None = 100.0,
|
|
388
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
388
389
|
):
|
|
389
390
|
"""Add new square-shaped spline
|
|
390
391
|
|
|
@@ -392,9 +393,9 @@ def primitive_square_add(
|
|
|
392
393
|
:type execution_context: int | str | None
|
|
393
394
|
:type undo: bool | None
|
|
394
395
|
:param size: Size, Size of new circle
|
|
395
|
-
:type size:
|
|
396
|
+
:type size: float | None
|
|
396
397
|
:param location: Location, Location of new circle
|
|
397
|
-
:type location:
|
|
398
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
398
399
|
"""
|
|
399
400
|
|
|
400
401
|
...
|
|
@@ -404,12 +405,12 @@ def select(
|
|
|
404
405
|
execution_context: int | str | None = None,
|
|
405
406
|
undo: bool | None = None,
|
|
406
407
|
*,
|
|
407
|
-
extend: bool |
|
|
408
|
-
deselect: bool |
|
|
409
|
-
toggle: bool |
|
|
410
|
-
deselect_all: bool |
|
|
411
|
-
select_passthrough: bool |
|
|
412
|
-
location:
|
|
408
|
+
extend: bool | None = False,
|
|
409
|
+
deselect: bool | None = False,
|
|
410
|
+
toggle: bool | None = False,
|
|
411
|
+
deselect_all: bool | None = False,
|
|
412
|
+
select_passthrough: bool | None = False,
|
|
413
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0),
|
|
413
414
|
):
|
|
414
415
|
"""Select spline points
|
|
415
416
|
|
|
@@ -417,17 +418,17 @@ def select(
|
|
|
417
418
|
:type execution_context: int | str | None
|
|
418
419
|
:type undo: bool | None
|
|
419
420
|
:param extend: Extend, Extend selection instead of deselecting everything first
|
|
420
|
-
:type extend: bool |
|
|
421
|
+
:type extend: bool | None
|
|
421
422
|
:param deselect: Deselect, Remove from selection
|
|
422
|
-
:type deselect: bool |
|
|
423
|
+
:type deselect: bool | None
|
|
423
424
|
:param toggle: Toggle Selection, Toggle the selection
|
|
424
|
-
:type toggle: bool |
|
|
425
|
+
:type toggle: bool | None
|
|
425
426
|
:param deselect_all: Deselect On Nothing, Deselect all when nothing under the cursor
|
|
426
|
-
:type deselect_all: bool |
|
|
427
|
+
:type deselect_all: bool | None
|
|
427
428
|
:param select_passthrough: Only Select Unselected, Ignore the select action when the element is already selected
|
|
428
|
-
:type select_passthrough: bool |
|
|
429
|
+
:type select_passthrough: bool | None
|
|
429
430
|
:param location: Location, Location of vertex in normalized space
|
|
430
|
-
:type location:
|
|
431
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
431
432
|
"""
|
|
432
433
|
|
|
433
434
|
...
|
|
@@ -467,11 +468,11 @@ def select_box(
|
|
|
467
468
|
execution_context: int | str | None = None,
|
|
468
469
|
undo: bool | None = None,
|
|
469
470
|
*,
|
|
470
|
-
xmin:
|
|
471
|
-
xmax:
|
|
472
|
-
ymin:
|
|
473
|
-
ymax:
|
|
474
|
-
wait_for_input: bool |
|
|
471
|
+
xmin: int | None = 0,
|
|
472
|
+
xmax: int | None = 0,
|
|
473
|
+
ymin: int | None = 0,
|
|
474
|
+
ymax: int | None = 0,
|
|
475
|
+
wait_for_input: bool | None = True,
|
|
475
476
|
mode: str | None = "SET",
|
|
476
477
|
):
|
|
477
478
|
"""Select curve points using box selection
|
|
@@ -480,15 +481,15 @@ def select_box(
|
|
|
480
481
|
:type execution_context: int | str | None
|
|
481
482
|
:type undo: bool | None
|
|
482
483
|
:param xmin: X Min
|
|
483
|
-
:type xmin:
|
|
484
|
+
:type xmin: int | None
|
|
484
485
|
:param xmax: X Max
|
|
485
|
-
:type xmax:
|
|
486
|
+
:type xmax: int | None
|
|
486
487
|
:param ymin: Y Min
|
|
487
|
-
:type ymin:
|
|
488
|
+
:type ymin: int | None
|
|
488
489
|
:param ymax: Y Max
|
|
489
|
-
:type ymax:
|
|
490
|
+
:type ymax: int | None
|
|
490
491
|
:param wait_for_input: Wait for Input
|
|
491
|
-
:type wait_for_input: bool |
|
|
492
|
+
:type wait_for_input: bool | None
|
|
492
493
|
:param mode: Mode
|
|
493
494
|
|
|
494
495
|
SET
|
|
@@ -509,10 +510,10 @@ def select_circle(
|
|
|
509
510
|
execution_context: int | str | None = None,
|
|
510
511
|
undo: bool | None = None,
|
|
511
512
|
*,
|
|
512
|
-
x:
|
|
513
|
-
y:
|
|
514
|
-
radius:
|
|
515
|
-
wait_for_input: bool |
|
|
513
|
+
x: int | None = 0,
|
|
514
|
+
y: int | None = 0,
|
|
515
|
+
radius: int | None = 25,
|
|
516
|
+
wait_for_input: bool | None = True,
|
|
516
517
|
mode: str | None = "SET",
|
|
517
518
|
):
|
|
518
519
|
"""Select curve points using circle selection
|
|
@@ -521,13 +522,13 @@ def select_circle(
|
|
|
521
522
|
:type execution_context: int | str | None
|
|
522
523
|
:type undo: bool | None
|
|
523
524
|
:param x: X
|
|
524
|
-
:type x:
|
|
525
|
+
:type x: int | None
|
|
525
526
|
:param y: Y
|
|
526
|
-
:type y:
|
|
527
|
+
:type y: int | None
|
|
527
528
|
:param radius: Radius
|
|
528
|
-
:type radius:
|
|
529
|
+
:type radius: int | None
|
|
529
530
|
:param wait_for_input: Wait for Input
|
|
530
|
-
:type wait_for_input: bool |
|
|
531
|
+
:type wait_for_input: bool | None
|
|
531
532
|
:param mode: Mode
|
|
532
533
|
|
|
533
534
|
SET
|
|
@@ -606,7 +607,7 @@ def select_linked_pick(
|
|
|
606
607
|
execution_context: int | str | None = None,
|
|
607
608
|
undo: bool | None = None,
|
|
608
609
|
*,
|
|
609
|
-
deselect: bool |
|
|
610
|
+
deselect: bool | None = False,
|
|
610
611
|
):
|
|
611
612
|
"""(De)select all points linked to the curve under the mouse cursor
|
|
612
613
|
|
|
@@ -614,7 +615,7 @@ def select_linked_pick(
|
|
|
614
615
|
:type execution_context: int | str | None
|
|
615
616
|
:type undo: bool | None
|
|
616
617
|
:param deselect: Deselect
|
|
617
|
-
:type deselect: bool |
|
|
618
|
+
:type deselect: bool | None
|
|
618
619
|
"""
|
|
619
620
|
|
|
620
621
|
...
|
|
@@ -680,8 +681,8 @@ def shape_key_rekey(
|
|
|
680
681
|
execution_context: int | str | None = None,
|
|
681
682
|
undo: bool | None = None,
|
|
682
683
|
*,
|
|
683
|
-
location: bool |
|
|
684
|
-
feather: bool |
|
|
684
|
+
location: bool | None = True,
|
|
685
|
+
feather: bool | None = True,
|
|
685
686
|
):
|
|
686
687
|
"""Recalculate animation data on selected points for frames selected in the dopesheet
|
|
687
688
|
|
|
@@ -689,9 +690,9 @@ def shape_key_rekey(
|
|
|
689
690
|
:type execution_context: int | str | None
|
|
690
691
|
:type undo: bool | None
|
|
691
692
|
:param location: Location
|
|
692
|
-
:type location: bool |
|
|
693
|
+
:type location: bool | None
|
|
693
694
|
:param feather: Feather
|
|
694
|
-
:type feather: bool |
|
|
695
|
+
:type feather: bool | None
|
|
695
696
|
"""
|
|
696
697
|
|
|
697
698
|
...
|
|
@@ -701,8 +702,8 @@ def slide_point(
|
|
|
701
702
|
execution_context: int | str | None = None,
|
|
702
703
|
undo: bool | None = None,
|
|
703
704
|
*,
|
|
704
|
-
slide_feather: bool |
|
|
705
|
-
is_new_point: bool |
|
|
705
|
+
slide_feather: bool | None = False,
|
|
706
|
+
is_new_point: bool | None = False,
|
|
706
707
|
):
|
|
707
708
|
"""Slide control points
|
|
708
709
|
|
|
@@ -710,9 +711,9 @@ def slide_point(
|
|
|
710
711
|
:type execution_context: int | str | None
|
|
711
712
|
:type undo: bool | None
|
|
712
713
|
:param slide_feather: Slide Feather, First try to slide feather instead of vertex
|
|
713
|
-
:type slide_feather: bool |
|
|
714
|
+
:type slide_feather: bool | None
|
|
714
715
|
:param is_new_point: Slide New Point, Newly created vertex is being slid
|
|
715
|
-
:type is_new_point: bool |
|
|
716
|
+
:type is_new_point: bool | None
|
|
716
717
|
"""
|
|
717
718
|
|
|
718
719
|
...
|
bpy/ops/mball/__init__.pyi
CHANGED
|
@@ -11,7 +11,7 @@ def delete_metaelems(
|
|
|
11
11
|
execution_context: int | str | None = None,
|
|
12
12
|
undo: bool | None = None,
|
|
13
13
|
*,
|
|
14
|
-
confirm: bool |
|
|
14
|
+
confirm: bool | None = True,
|
|
15
15
|
):
|
|
16
16
|
"""Delete selected metaball element(s)
|
|
17
17
|
|
|
@@ -19,7 +19,7 @@ def delete_metaelems(
|
|
|
19
19
|
:type execution_context: int | str | None
|
|
20
20
|
:type undo: bool | None
|
|
21
21
|
:param confirm: Confirm, Prompt for confirmation
|
|
22
|
-
:type confirm: bool |
|
|
22
|
+
:type confirm: bool | None
|
|
23
23
|
"""
|
|
24
24
|
|
|
25
25
|
...
|
|
@@ -64,7 +64,7 @@ def hide_metaelems(
|
|
|
64
64
|
execution_context: int | str | None = None,
|
|
65
65
|
undo: bool | None = None,
|
|
66
66
|
*,
|
|
67
|
-
unselected: bool |
|
|
67
|
+
unselected: bool | None = False,
|
|
68
68
|
):
|
|
69
69
|
"""Hide (un)selected metaball element(s)
|
|
70
70
|
|
|
@@ -72,7 +72,7 @@ def hide_metaelems(
|
|
|
72
72
|
:type execution_context: int | str | None
|
|
73
73
|
:type undo: bool | None
|
|
74
74
|
:param unselected: Unselected, Hide unselected rather than selected
|
|
75
|
-
:type unselected: bool |
|
|
75
|
+
:type unselected: bool | None
|
|
76
76
|
"""
|
|
77
77
|
|
|
78
78
|
...
|
|
@@ -82,7 +82,7 @@ def reveal_metaelems(
|
|
|
82
82
|
execution_context: int | str | None = None,
|
|
83
83
|
undo: bool | None = None,
|
|
84
84
|
*,
|
|
85
|
-
select: bool |
|
|
85
|
+
select: bool | None = True,
|
|
86
86
|
):
|
|
87
87
|
"""Reveal all hidden metaball elements
|
|
88
88
|
|
|
@@ -90,7 +90,7 @@ def reveal_metaelems(
|
|
|
90
90
|
:type execution_context: int | str | None
|
|
91
91
|
:type undo: bool | None
|
|
92
92
|
:param select: Select
|
|
93
|
-
:type select: bool |
|
|
93
|
+
:type select: bool | None
|
|
94
94
|
"""
|
|
95
95
|
|
|
96
96
|
...
|
|
@@ -130,8 +130,8 @@ def select_random_metaelems(
|
|
|
130
130
|
execution_context: int | str | None = None,
|
|
131
131
|
undo: bool | None = None,
|
|
132
132
|
*,
|
|
133
|
-
ratio:
|
|
134
|
-
seed:
|
|
133
|
+
ratio: float | None = 0.5,
|
|
134
|
+
seed: int | None = 0,
|
|
135
135
|
action: str | None = "SELECT",
|
|
136
136
|
):
|
|
137
137
|
"""Randomly select metaball elements
|
|
@@ -140,9 +140,9 @@ def select_random_metaelems(
|
|
|
140
140
|
:type execution_context: int | str | None
|
|
141
141
|
:type undo: bool | None
|
|
142
142
|
:param ratio: Ratio, Portion of items to select randomly
|
|
143
|
-
:type ratio:
|
|
143
|
+
:type ratio: float | None
|
|
144
144
|
:param seed: Random Seed, Seed for the random number generator
|
|
145
|
-
:type seed:
|
|
145
|
+
:type seed: int | None
|
|
146
146
|
:param action: Action, Selection action to execute
|
|
147
147
|
|
|
148
148
|
SELECT
|
|
@@ -161,7 +161,7 @@ def select_similar(
|
|
|
161
161
|
undo: bool | None = None,
|
|
162
162
|
*,
|
|
163
163
|
type: str | None = "TYPE",
|
|
164
|
-
threshold:
|
|
164
|
+
threshold: float | None = 0.1,
|
|
165
165
|
):
|
|
166
166
|
"""Select similar metaballs by property types
|
|
167
167
|
|
|
@@ -171,7 +171,7 @@ def select_similar(
|
|
|
171
171
|
:param type: Type
|
|
172
172
|
:type type: str | None
|
|
173
173
|
:param threshold: Threshold
|
|
174
|
-
:type threshold:
|
|
174
|
+
:type threshold: float | None
|
|
175
175
|
"""
|
|
176
176
|
|
|
177
177
|
...
|