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
|
@@ -1,3 +1,11 @@
|
|
|
1
|
+
"""
|
|
2
|
+
This module contains chaining iterators used for the chaining
|
|
3
|
+
operation to construct long strokes by concatenating feature edges
|
|
4
|
+
according to selected chaining rules. The module is also intended to
|
|
5
|
+
be a collection of examples for defining chaining iterators in Python.
|
|
6
|
+
|
|
7
|
+
"""
|
|
8
|
+
|
|
1
9
|
import typing
|
|
2
10
|
import freestyle.types
|
|
3
11
|
|
|
@@ -171,12 +179,14 @@ class pyFillOcclusionsAbsoluteAndRelativeChainingIterator:
|
|
|
171
179
|
selection.
|
|
172
180
|
"""
|
|
173
181
|
|
|
174
|
-
def __init__(self, percent, l):
|
|
182
|
+
def __init__(self, percent: float, l: float):
|
|
175
183
|
"""Builds a pyFillOcclusionsAbsoluteAndRelativeChainingIterator object.
|
|
176
184
|
|
|
177
185
|
:param percent: The maximal length of the occluded part as a
|
|
178
186
|
percentage of the total chain length.
|
|
187
|
+
:type percent: float
|
|
179
188
|
:param l: Absolute length.
|
|
189
|
+
:type l: float
|
|
180
190
|
"""
|
|
181
191
|
...
|
|
182
192
|
|
|
@@ -194,10 +204,11 @@ class pyFillOcclusionsAbsoluteAndRelativeChainingIterator:
|
|
|
194
204
|
class pyFillOcclusionsAbsoluteChainingIterator:
|
|
195
205
|
"""Chaining iterator that fills small occlusions"""
|
|
196
206
|
|
|
197
|
-
def __init__(self, length):
|
|
207
|
+
def __init__(self, length: int):
|
|
198
208
|
"""Builds a pyFillOcclusionsAbsoluteChainingIterator object.
|
|
199
209
|
|
|
200
210
|
:param length: The maximum length of the occluded part in pixels.
|
|
211
|
+
:type length: int
|
|
201
212
|
"""
|
|
202
213
|
...
|
|
203
214
|
|
|
@@ -215,11 +226,12 @@ class pyFillOcclusionsAbsoluteChainingIterator:
|
|
|
215
226
|
class pyFillOcclusionsRelativeChainingIterator:
|
|
216
227
|
"""Chaining iterator that fills small occlusions"""
|
|
217
228
|
|
|
218
|
-
def __init__(self, percent):
|
|
229
|
+
def __init__(self, percent: float):
|
|
219
230
|
"""Builds a pyFillOcclusionsRelativeChainingIterator object.
|
|
220
231
|
|
|
221
232
|
:param percent: The maximal length of the occluded part, expressed
|
|
222
233
|
in a percentage of the total chain length.
|
|
234
|
+
:type percent: float
|
|
223
235
|
"""
|
|
224
236
|
...
|
|
225
237
|
|
|
@@ -239,12 +251,14 @@ class pyFillQi0AbsoluteAndRelativeChainingIterator:
|
|
|
239
251
|
selection.
|
|
240
252
|
"""
|
|
241
253
|
|
|
242
|
-
def __init__(self, percent, l):
|
|
254
|
+
def __init__(self, percent: float, l: float):
|
|
243
255
|
"""Builds a pyFillQi0AbsoluteAndRelativeChainingIterator object.
|
|
244
256
|
|
|
245
257
|
:param percent: The maximal length of the occluded part as a
|
|
246
258
|
percentage of the total chain length.
|
|
259
|
+
:type percent: float
|
|
247
260
|
:param l: Absolute length.
|
|
261
|
+
:type l: float
|
|
248
262
|
"""
|
|
249
263
|
...
|
|
250
264
|
|
|
@@ -290,10 +304,11 @@ class pySketchyChainSilhouetteIterator:
|
|
|
290
304
|
same ViewEdge multiple times to achieve a sketchy effect.
|
|
291
305
|
"""
|
|
292
306
|
|
|
293
|
-
def __init__(self, nRounds=3, stayInSelection: bool = True):
|
|
307
|
+
def __init__(self, nRounds: int = 3, stayInSelection: bool = True):
|
|
294
308
|
"""Builds a pySketchyChainSilhouetteIterator object.
|
|
295
309
|
|
|
296
310
|
:param nRounds: Number of times every Viewedge is chained.
|
|
311
|
+
:type nRounds: int
|
|
297
312
|
:param stayInSelection: if False, edges outside of the selection can be chained.
|
|
298
313
|
:type stayInSelection: bool
|
|
299
314
|
"""
|