fake-bpy-module 20240619__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 +10 -10
- 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 +901 -798
- bpy/ops/nla/__init__.pyi +70 -70
- bpy/ops/node/__init__.pyi +192 -192
- bpy/ops/object/__init__.pyi +1017 -844
- 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 +642 -580
- 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 +1814 -1804
- bpy/ops/workspace/__init__.pyi +4 -4
- bpy/types/__init__.pyi +30115 -30082
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/RECORD +78 -78
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20240619.dist-info → fake_bpy_module-20240621.dist-info}/top_level.txt +0 -0
|
@@ -55,7 +55,7 @@ def select_grow(
|
|
|
55
55
|
execution_context: int | str | None = None,
|
|
56
56
|
undo: bool | None = None,
|
|
57
57
|
*,
|
|
58
|
-
distance:
|
|
58
|
+
distance: float | None = 0.1,
|
|
59
59
|
):
|
|
60
60
|
"""Select curves which are close to curves that are selected already
|
|
61
61
|
|
|
@@ -63,7 +63,7 @@ def select_grow(
|
|
|
63
63
|
:type execution_context: int | str | None
|
|
64
64
|
:type undo: bool | None
|
|
65
65
|
:param distance: Distance, By how much to grow the selection
|
|
66
|
-
:type distance:
|
|
66
|
+
:type distance: float | None
|
|
67
67
|
"""
|
|
68
68
|
|
|
69
69
|
...
|
|
@@ -73,11 +73,11 @@ def select_random(
|
|
|
73
73
|
execution_context: int | str | None = None,
|
|
74
74
|
undo: bool | None = None,
|
|
75
75
|
*,
|
|
76
|
-
seed:
|
|
77
|
-
partial: bool |
|
|
78
|
-
probability:
|
|
79
|
-
min:
|
|
80
|
-
constant_per_curve: bool |
|
|
76
|
+
seed: int | None = 0,
|
|
77
|
+
partial: bool | None = False,
|
|
78
|
+
probability: float | None = 0.5,
|
|
79
|
+
min: float | None = 0.0,
|
|
80
|
+
constant_per_curve: bool | None = True,
|
|
81
81
|
):
|
|
82
82
|
"""Randomizes existing selection or create new random selection
|
|
83
83
|
|
|
@@ -85,15 +85,15 @@ def select_random(
|
|
|
85
85
|
:type execution_context: int | str | None
|
|
86
86
|
:type undo: bool | None
|
|
87
87
|
:param seed: Seed, Source of randomness
|
|
88
|
-
:type seed:
|
|
88
|
+
:type seed: int | None
|
|
89
89
|
:param partial: Partial, Allow points or curves to be selected partially
|
|
90
|
-
:type partial: bool |
|
|
90
|
+
:type partial: bool | None
|
|
91
91
|
:param probability: Probability, Chance of every point or curve being included in the selection
|
|
92
|
-
:type probability:
|
|
92
|
+
:type probability: float | None
|
|
93
93
|
:param min: Min, Minimum value for the random selection
|
|
94
|
-
:type min:
|
|
94
|
+
:type min: float | None
|
|
95
95
|
:param constant_per_curve: Constant per Curve, The generated random number is the same for every control point of a curve
|
|
96
|
-
:type constant_per_curve: bool |
|
|
96
|
+
:type constant_per_curve: bool | None
|
|
97
97
|
"""
|
|
98
98
|
|
|
99
99
|
...
|