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/surface/__init__.pyi
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import typing
|
|
2
2
|
import collections.abc
|
|
3
3
|
import bpy.types
|
|
4
|
+
import mathutils
|
|
4
5
|
|
|
5
6
|
GenericType1 = typing.TypeVar("GenericType1")
|
|
6
7
|
GenericType2 = typing.TypeVar("GenericType2")
|
|
@@ -10,12 +11,20 @@ def primitive_nurbs_surface_circle_add(
|
|
|
10
11
|
execution_context: int | str | None = None,
|
|
11
12
|
undo: bool | None = None,
|
|
12
13
|
*,
|
|
13
|
-
radius:
|
|
14
|
-
enter_editmode: bool |
|
|
14
|
+
radius: float | None = 1.0,
|
|
15
|
+
enter_editmode: bool | None = False,
|
|
15
16
|
align: str | None = "WORLD",
|
|
16
|
-
location:
|
|
17
|
-
|
|
18
|
-
|
|
17
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
18
|
+
0.0,
|
|
19
|
+
0.0,
|
|
20
|
+
0.0,
|
|
21
|
+
),
|
|
22
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
23
|
+
0.0,
|
|
24
|
+
0.0,
|
|
25
|
+
0.0,
|
|
26
|
+
),
|
|
27
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
19
28
|
):
|
|
20
29
|
"""Construct a Nurbs surface Circle
|
|
21
30
|
|
|
@@ -23,9 +32,9 @@ def primitive_nurbs_surface_circle_add(
|
|
|
23
32
|
:type execution_context: int | str | None
|
|
24
33
|
:type undo: bool | None
|
|
25
34
|
:param radius: Radius
|
|
26
|
-
:type radius:
|
|
35
|
+
:type radius: float | None
|
|
27
36
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
28
|
-
:type enter_editmode: bool |
|
|
37
|
+
:type enter_editmode: bool | None
|
|
29
38
|
:param align: Align, The alignment of the new object
|
|
30
39
|
|
|
31
40
|
WORLD
|
|
@@ -38,11 +47,11 @@ def primitive_nurbs_surface_circle_add(
|
|
|
38
47
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
39
48
|
:type align: str | None
|
|
40
49
|
:param location: Location, Location for the newly added object
|
|
41
|
-
:type location:
|
|
50
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
42
51
|
:param rotation: Rotation, Rotation for the newly added object
|
|
43
|
-
:type rotation:
|
|
52
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
44
53
|
:param scale: Scale, Scale for the newly added object
|
|
45
|
-
:type scale:
|
|
54
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
46
55
|
"""
|
|
47
56
|
|
|
48
57
|
...
|
|
@@ -52,12 +61,20 @@ def primitive_nurbs_surface_curve_add(
|
|
|
52
61
|
execution_context: int | str | None = None,
|
|
53
62
|
undo: bool | None = None,
|
|
54
63
|
*,
|
|
55
|
-
radius:
|
|
56
|
-
enter_editmode: bool |
|
|
64
|
+
radius: float | None = 1.0,
|
|
65
|
+
enter_editmode: bool | None = False,
|
|
57
66
|
align: str | None = "WORLD",
|
|
58
|
-
location:
|
|
59
|
-
|
|
60
|
-
|
|
67
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
68
|
+
0.0,
|
|
69
|
+
0.0,
|
|
70
|
+
0.0,
|
|
71
|
+
),
|
|
72
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
73
|
+
0.0,
|
|
74
|
+
0.0,
|
|
75
|
+
0.0,
|
|
76
|
+
),
|
|
77
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
61
78
|
):
|
|
62
79
|
"""Construct a Nurbs surface Curve
|
|
63
80
|
|
|
@@ -65,9 +82,9 @@ def primitive_nurbs_surface_curve_add(
|
|
|
65
82
|
:type execution_context: int | str | None
|
|
66
83
|
:type undo: bool | None
|
|
67
84
|
:param radius: Radius
|
|
68
|
-
:type radius:
|
|
85
|
+
:type radius: float | None
|
|
69
86
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
70
|
-
:type enter_editmode: bool |
|
|
87
|
+
:type enter_editmode: bool | None
|
|
71
88
|
:param align: Align, The alignment of the new object
|
|
72
89
|
|
|
73
90
|
WORLD
|
|
@@ -80,11 +97,11 @@ def primitive_nurbs_surface_curve_add(
|
|
|
80
97
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
81
98
|
:type align: str | None
|
|
82
99
|
:param location: Location, Location for the newly added object
|
|
83
|
-
:type location:
|
|
100
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
84
101
|
:param rotation: Rotation, Rotation for the newly added object
|
|
85
|
-
:type rotation:
|
|
102
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
86
103
|
:param scale: Scale, Scale for the newly added object
|
|
87
|
-
:type scale:
|
|
104
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
88
105
|
"""
|
|
89
106
|
|
|
90
107
|
...
|
|
@@ -94,12 +111,20 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
94
111
|
execution_context: int | str | None = None,
|
|
95
112
|
undo: bool | None = None,
|
|
96
113
|
*,
|
|
97
|
-
radius:
|
|
98
|
-
enter_editmode: bool |
|
|
114
|
+
radius: float | None = 1.0,
|
|
115
|
+
enter_editmode: bool | None = False,
|
|
99
116
|
align: str | None = "WORLD",
|
|
100
|
-
location:
|
|
101
|
-
|
|
102
|
-
|
|
117
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
118
|
+
0.0,
|
|
119
|
+
0.0,
|
|
120
|
+
0.0,
|
|
121
|
+
),
|
|
122
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
123
|
+
0.0,
|
|
124
|
+
0.0,
|
|
125
|
+
0.0,
|
|
126
|
+
),
|
|
127
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
103
128
|
):
|
|
104
129
|
"""Construct a Nurbs surface Cylinder
|
|
105
130
|
|
|
@@ -107,9 +132,9 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
107
132
|
:type execution_context: int | str | None
|
|
108
133
|
:type undo: bool | None
|
|
109
134
|
:param radius: Radius
|
|
110
|
-
:type radius:
|
|
135
|
+
:type radius: float | None
|
|
111
136
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
112
|
-
:type enter_editmode: bool |
|
|
137
|
+
:type enter_editmode: bool | None
|
|
113
138
|
:param align: Align, The alignment of the new object
|
|
114
139
|
|
|
115
140
|
WORLD
|
|
@@ -122,11 +147,11 @@ def primitive_nurbs_surface_cylinder_add(
|
|
|
122
147
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
123
148
|
:type align: str | None
|
|
124
149
|
:param location: Location, Location for the newly added object
|
|
125
|
-
:type location:
|
|
150
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
126
151
|
:param rotation: Rotation, Rotation for the newly added object
|
|
127
|
-
:type rotation:
|
|
152
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
128
153
|
:param scale: Scale, Scale for the newly added object
|
|
129
|
-
:type scale:
|
|
154
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
130
155
|
"""
|
|
131
156
|
|
|
132
157
|
...
|
|
@@ -136,12 +161,20 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
136
161
|
execution_context: int | str | None = None,
|
|
137
162
|
undo: bool | None = None,
|
|
138
163
|
*,
|
|
139
|
-
radius:
|
|
140
|
-
enter_editmode: bool |
|
|
164
|
+
radius: float | None = 1.0,
|
|
165
|
+
enter_editmode: bool | None = False,
|
|
141
166
|
align: str | None = "WORLD",
|
|
142
|
-
location:
|
|
143
|
-
|
|
144
|
-
|
|
167
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
168
|
+
0.0,
|
|
169
|
+
0.0,
|
|
170
|
+
0.0,
|
|
171
|
+
),
|
|
172
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
173
|
+
0.0,
|
|
174
|
+
0.0,
|
|
175
|
+
0.0,
|
|
176
|
+
),
|
|
177
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
145
178
|
):
|
|
146
179
|
"""Construct a Nurbs surface Sphere
|
|
147
180
|
|
|
@@ -149,9 +182,9 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
149
182
|
:type execution_context: int | str | None
|
|
150
183
|
:type undo: bool | None
|
|
151
184
|
:param radius: Radius
|
|
152
|
-
:type radius:
|
|
185
|
+
:type radius: float | None
|
|
153
186
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
154
|
-
:type enter_editmode: bool |
|
|
187
|
+
:type enter_editmode: bool | None
|
|
155
188
|
:param align: Align, The alignment of the new object
|
|
156
189
|
|
|
157
190
|
WORLD
|
|
@@ -164,11 +197,11 @@ def primitive_nurbs_surface_sphere_add(
|
|
|
164
197
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
165
198
|
:type align: str | None
|
|
166
199
|
:param location: Location, Location for the newly added object
|
|
167
|
-
:type location:
|
|
200
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
168
201
|
:param rotation: Rotation, Rotation for the newly added object
|
|
169
|
-
:type rotation:
|
|
202
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
170
203
|
:param scale: Scale, Scale for the newly added object
|
|
171
|
-
:type scale:
|
|
204
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
172
205
|
"""
|
|
173
206
|
|
|
174
207
|
...
|
|
@@ -178,12 +211,20 @@ def primitive_nurbs_surface_surface_add(
|
|
|
178
211
|
execution_context: int | str | None = None,
|
|
179
212
|
undo: bool | None = None,
|
|
180
213
|
*,
|
|
181
|
-
radius:
|
|
182
|
-
enter_editmode: bool |
|
|
214
|
+
radius: float | None = 1.0,
|
|
215
|
+
enter_editmode: bool | None = False,
|
|
183
216
|
align: str | None = "WORLD",
|
|
184
|
-
location:
|
|
185
|
-
|
|
186
|
-
|
|
217
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
218
|
+
0.0,
|
|
219
|
+
0.0,
|
|
220
|
+
0.0,
|
|
221
|
+
),
|
|
222
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
223
|
+
0.0,
|
|
224
|
+
0.0,
|
|
225
|
+
0.0,
|
|
226
|
+
),
|
|
227
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
187
228
|
):
|
|
188
229
|
"""Construct a Nurbs surface Patch
|
|
189
230
|
|
|
@@ -191,9 +232,9 @@ def primitive_nurbs_surface_surface_add(
|
|
|
191
232
|
:type execution_context: int | str | None
|
|
192
233
|
:type undo: bool | None
|
|
193
234
|
:param radius: Radius
|
|
194
|
-
:type radius:
|
|
235
|
+
:type radius: float | None
|
|
195
236
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
196
|
-
:type enter_editmode: bool |
|
|
237
|
+
:type enter_editmode: bool | None
|
|
197
238
|
:param align: Align, The alignment of the new object
|
|
198
239
|
|
|
199
240
|
WORLD
|
|
@@ -206,11 +247,11 @@ def primitive_nurbs_surface_surface_add(
|
|
|
206
247
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
207
248
|
:type align: str | None
|
|
208
249
|
:param location: Location, Location for the newly added object
|
|
209
|
-
:type location:
|
|
250
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
210
251
|
:param rotation: Rotation, Rotation for the newly added object
|
|
211
|
-
:type rotation:
|
|
252
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
212
253
|
:param scale: Scale, Scale for the newly added object
|
|
213
|
-
:type scale:
|
|
254
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
214
255
|
"""
|
|
215
256
|
|
|
216
257
|
...
|
|
@@ -220,12 +261,20 @@ def primitive_nurbs_surface_torus_add(
|
|
|
220
261
|
execution_context: int | str | None = None,
|
|
221
262
|
undo: bool | None = None,
|
|
222
263
|
*,
|
|
223
|
-
radius:
|
|
224
|
-
enter_editmode: bool |
|
|
264
|
+
radius: float | None = 1.0,
|
|
265
|
+
enter_editmode: bool | None = False,
|
|
225
266
|
align: str | None = "WORLD",
|
|
226
|
-
location:
|
|
227
|
-
|
|
228
|
-
|
|
267
|
+
location: collections.abc.Sequence[float] | mathutils.Vector | None = (
|
|
268
|
+
0.0,
|
|
269
|
+
0.0,
|
|
270
|
+
0.0,
|
|
271
|
+
),
|
|
272
|
+
rotation: collections.abc.Sequence[float] | mathutils.Euler | None = (
|
|
273
|
+
0.0,
|
|
274
|
+
0.0,
|
|
275
|
+
0.0,
|
|
276
|
+
),
|
|
277
|
+
scale: collections.abc.Sequence[float] | mathutils.Vector | None = (0.0, 0.0, 0.0),
|
|
229
278
|
):
|
|
230
279
|
"""Construct a Nurbs surface Torus
|
|
231
280
|
|
|
@@ -233,9 +282,9 @@ def primitive_nurbs_surface_torus_add(
|
|
|
233
282
|
:type execution_context: int | str | None
|
|
234
283
|
:type undo: bool | None
|
|
235
284
|
:param radius: Radius
|
|
236
|
-
:type radius:
|
|
285
|
+
:type radius: float | None
|
|
237
286
|
:param enter_editmode: Enter Edit Mode, Enter edit mode when adding this object
|
|
238
|
-
:type enter_editmode: bool |
|
|
287
|
+
:type enter_editmode: bool | None
|
|
239
288
|
:param align: Align, The alignment of the new object
|
|
240
289
|
|
|
241
290
|
WORLD
|
|
@@ -248,11 +297,11 @@ def primitive_nurbs_surface_torus_add(
|
|
|
248
297
|
3D Cursor -- Use the 3D cursor orientation for the new object.
|
|
249
298
|
:type align: str | None
|
|
250
299
|
:param location: Location, Location for the newly added object
|
|
251
|
-
:type location:
|
|
300
|
+
:type location: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
252
301
|
:param rotation: Rotation, Rotation for the newly added object
|
|
253
|
-
:type rotation:
|
|
302
|
+
:type rotation: collections.abc.Sequence[float] | mathutils.Euler | None
|
|
254
303
|
:param scale: Scale, Scale for the newly added object
|
|
255
|
-
:type scale:
|
|
304
|
+
:type scale: collections.abc.Sequence[float] | mathutils.Vector | None
|
|
256
305
|
"""
|
|
257
306
|
|
|
258
307
|
...
|