fake-bpy-module 20250429__py3-none-any.whl → 20250501__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_operators/sequencer/__init__.pyi +14 -14
- bpy/_typing/rna_enums/__init__.pyi +0 -3
- bpy/ops/object/__init__.pyi +8 -1
- bpy/ops/sequencer/__init__.pyi +4 -4
- bpy/types/__init__.pyi +44 -26
- {fake_bpy_module-20250429.dist-info → fake_bpy_module-20250501.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250429.dist-info → fake_bpy_module-20250501.dist-info}/RECORD +10 -10
- {fake_bpy_module-20250429.dist-info → fake_bpy_module-20250501.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250429.dist-info → fake_bpy_module-20250501.dist-info}/top_level.txt +0 -0
|
@@ -12,11 +12,11 @@ class Fade:
|
|
|
12
12
|
start: typing.Any
|
|
13
13
|
type: typing.Any
|
|
14
14
|
|
|
15
|
-
def calculate_max_value(self,
|
|
16
|
-
"""Returns the maximum Y coordinate the fade animation should use for a given
|
|
17
|
-
Uses either the
|
|
15
|
+
def calculate_max_value(self, strip, fade_fcurve):
|
|
16
|
+
"""Returns the maximum Y coordinate the fade animation should use for a given strip
|
|
17
|
+
Uses either the strip's value for the animated property, or the next keyframe after the fade
|
|
18
18
|
|
|
19
|
-
:param
|
|
19
|
+
:param strip:
|
|
20
20
|
:param fade_fcurve:
|
|
21
21
|
"""
|
|
22
22
|
|
|
@@ -123,17 +123,17 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
123
123
|
:rtype: typing.Any
|
|
124
124
|
"""
|
|
125
125
|
|
|
126
|
-
def calculate_fade_duration(self, context,
|
|
126
|
+
def calculate_fade_duration(self, context, strip):
|
|
127
127
|
"""
|
|
128
128
|
|
|
129
129
|
:param context:
|
|
130
|
-
:param
|
|
130
|
+
:param strip:
|
|
131
131
|
"""
|
|
132
132
|
|
|
133
|
-
def calculate_fades(self,
|
|
133
|
+
def calculate_fades(self, strip, fade_fcurve, animated_property, duration):
|
|
134
134
|
"""Returns a list of Fade objects
|
|
135
135
|
|
|
136
|
-
:param
|
|
136
|
+
:param strip:
|
|
137
137
|
:param fade_fcurve:
|
|
138
138
|
:param animated_property:
|
|
139
139
|
:param duration:
|
|
@@ -161,20 +161,20 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
161
161
|
:param fades:
|
|
162
162
|
"""
|
|
163
163
|
|
|
164
|
-
def fade_find_or_create_fcurve(self, context,
|
|
164
|
+
def fade_find_or_create_fcurve(self, context, strip, animated_property):
|
|
165
165
|
"""Iterates over all the fcurves until it finds an fcurve with a data path
|
|
166
|
-
that corresponds to the
|
|
166
|
+
that corresponds to the strip.
|
|
167
167
|
Returns the matching FCurve or creates a new one if the function can't find a match.
|
|
168
168
|
|
|
169
169
|
:param context:
|
|
170
|
-
:param
|
|
170
|
+
:param strip:
|
|
171
171
|
:param animated_property:
|
|
172
172
|
"""
|
|
173
173
|
|
|
174
|
-
def is_long_enough(self,
|
|
174
|
+
def is_long_enough(self, strip, duration=0.0):
|
|
175
175
|
"""
|
|
176
176
|
|
|
177
|
-
:param
|
|
177
|
+
:param strip:
|
|
178
178
|
:param duration:
|
|
179
179
|
"""
|
|
180
180
|
|
|
@@ -186,7 +186,7 @@ class SequencerFadesAdd(bpy.types.Operator):
|
|
|
186
186
|
"""
|
|
187
187
|
|
|
188
188
|
class SequencerFadesClear(bpy.types.Operator):
|
|
189
|
-
"""Removes fade animation from selected
|
|
189
|
+
"""Removes fade animation from selected strips"""
|
|
190
190
|
|
|
191
191
|
bl_idname: typing.Any
|
|
192
192
|
bl_label: typing.Any
|
|
@@ -274,9 +274,6 @@ type BrushSculptBrushTypeItems = typing.Literal[
|
|
|
274
274
|
"BLOB", # Blob.
|
|
275
275
|
"CREASE", # Crease.
|
|
276
276
|
"SMOOTH", # Smooth.
|
|
277
|
-
"FLATTEN", # Flatten.
|
|
278
|
-
"FILL", # Fill.
|
|
279
|
-
"SCRAPE", # Scrape.
|
|
280
277
|
"PLANE", # Plane.
|
|
281
278
|
"MULTIPLANE_SCRAPE", # Multi-plane Scrape.
|
|
282
279
|
"PINCH", # Pinch.
|
bpy/ops/object/__init__.pyi
CHANGED
|
@@ -1911,7 +1911,7 @@ def join(execution_context: int | str | None = None, undo: bool | None = None):
|
|
|
1911
1911
|
"""
|
|
1912
1912
|
|
|
1913
1913
|
def join_shapes(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1914
|
-
"""
|
|
1914
|
+
"""Add the vertex positions of selected objects as shape keys or update existing shape keys with matching names
|
|
1915
1915
|
|
|
1916
1916
|
:type execution_context: int | str | None
|
|
1917
1917
|
:type undo: bool | None
|
|
@@ -4490,6 +4490,13 @@ def unlink_data(execution_context: int | str | None = None, undo: bool | None =
|
|
|
4490
4490
|
:type undo: bool | None
|
|
4491
4491
|
"""
|
|
4492
4492
|
|
|
4493
|
+
def update_shapes(execution_context: int | str | None = None, undo: bool | None = None):
|
|
4494
|
+
"""Update existing shape keys with the vertex positions of selected objects with matching names
|
|
4495
|
+
|
|
4496
|
+
:type execution_context: int | str | None
|
|
4497
|
+
:type undo: bool | None
|
|
4498
|
+
"""
|
|
4499
|
+
|
|
4493
4500
|
def vertex_group_add(
|
|
4494
4501
|
execution_context: int | str | None = None, undo: bool | None = None
|
|
4495
4502
|
):
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -583,15 +583,15 @@ def fades_add(
|
|
|
583
583
|
Fade Out -- Fade out selected strips.
|
|
584
584
|
|
|
585
585
|
CURSOR_FROM
|
|
586
|
-
From Current Frame -- Fade from the time cursor to the end of overlapping
|
|
586
|
+
From Current Frame -- Fade from the time cursor to the end of overlapping strips.
|
|
587
587
|
|
|
588
588
|
CURSOR_TO
|
|
589
|
-
To Current Frame -- Fade from the start of
|
|
589
|
+
To Current Frame -- Fade from the start of strips under the time cursor to the current frame.
|
|
590
590
|
:type type: typing.Literal['IN_OUT','IN','OUT','CURSOR_FROM','CURSOR_TO'] | None
|
|
591
591
|
"""
|
|
592
592
|
|
|
593
593
|
def fades_clear(execution_context: int | str | None = None, undo: bool | None = None):
|
|
594
|
-
"""Removes fade animation from selected
|
|
594
|
+
"""Removes fade animation from selected strips
|
|
595
595
|
|
|
596
596
|
:type execution_context: int | str | None
|
|
597
597
|
:type undo: bool | None
|
|
@@ -1181,7 +1181,7 @@ def rename_channel(
|
|
|
1181
1181
|
"""
|
|
1182
1182
|
|
|
1183
1183
|
def rendersize(execution_context: int | str | None = None, undo: bool | None = None):
|
|
1184
|
-
"""Set render size and aspect from active
|
|
1184
|
+
"""Set render size and aspect from active strip
|
|
1185
1185
|
|
|
1186
1186
|
:type execution_context: int | str | None
|
|
1187
1187
|
:type undo: bool | None
|
bpy/types/__init__.pyi
CHANGED
|
@@ -128219,6 +128219,12 @@ class CollectionExport(bpy_struct):
|
|
|
128219
128219
|
:type: PropertyGroup | None
|
|
128220
128220
|
"""
|
|
128221
128221
|
|
|
128222
|
+
filepath: str
|
|
128223
|
+
""" The file path used for exporting
|
|
128224
|
+
|
|
128225
|
+
:type: str
|
|
128226
|
+
"""
|
|
128227
|
+
|
|
128222
128228
|
is_open: bool
|
|
128223
128229
|
""" Whether the panel is expanded or closed
|
|
128224
128230
|
|
|
@@ -129549,7 +129555,7 @@ class CompositorNodeBoxMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
129549
129555
|
"""Create rectangular mask suitable for use as a simple matte"""
|
|
129550
129556
|
|
|
129551
129557
|
mask_height: float
|
|
129552
|
-
""" Height of the box
|
|
129558
|
+
""" Height of the box. (Deprecated: Use Size input instead.)
|
|
129553
129559
|
|
|
129554
129560
|
:type: float
|
|
129555
129561
|
"""
|
|
@@ -129561,25 +129567,25 @@ class CompositorNodeBoxMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
129561
129567
|
"""
|
|
129562
129568
|
|
|
129563
129569
|
mask_width: float
|
|
129564
|
-
""" Width of the box
|
|
129570
|
+
""" Width of the box. (Deprecated: Use Size input instead.)
|
|
129565
129571
|
|
|
129566
129572
|
:type: float
|
|
129567
129573
|
"""
|
|
129568
129574
|
|
|
129569
129575
|
rotation: float
|
|
129570
|
-
""" Rotation angle of the box
|
|
129576
|
+
""" Rotation angle of the box. (Deprecated: Use Rotation input instead.)
|
|
129571
129577
|
|
|
129572
129578
|
:type: float
|
|
129573
129579
|
"""
|
|
129574
129580
|
|
|
129575
129581
|
x: float
|
|
129576
|
-
""" X position of the middle of the box
|
|
129582
|
+
""" X position of the middle of the box. (Deprecated: Use Position input instead.)
|
|
129577
129583
|
|
|
129578
129584
|
:type: float
|
|
129579
129585
|
"""
|
|
129580
129586
|
|
|
129581
129587
|
y: float
|
|
129582
|
-
""" Y position of the middle of the box
|
|
129588
|
+
""" Y position of the middle of the box. (Deprecated: Use Position input instead.)
|
|
129583
129589
|
|
|
129584
129590
|
:type: float
|
|
129585
129591
|
"""
|
|
@@ -131413,43 +131419,43 @@ class CompositorNodeDBlur(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
131413
131419
|
"""Blur an image along a direction"""
|
|
131414
131420
|
|
|
131415
131421
|
angle: float
|
|
131416
|
-
"""
|
|
131422
|
+
""" (Deprecated: Use Translation Direction input instead.)
|
|
131417
131423
|
|
|
131418
131424
|
:type: float
|
|
131419
131425
|
"""
|
|
131420
131426
|
|
|
131421
131427
|
center_x: float
|
|
131422
|
-
"""
|
|
131428
|
+
""" (Deprecated: Use Center input instead.)
|
|
131423
131429
|
|
|
131424
131430
|
:type: float
|
|
131425
131431
|
"""
|
|
131426
131432
|
|
|
131427
131433
|
center_y: float
|
|
131428
|
-
"""
|
|
131434
|
+
""" (Deprecated: Use Center input instead.)
|
|
131429
131435
|
|
|
131430
131436
|
:type: float
|
|
131431
131437
|
"""
|
|
131432
131438
|
|
|
131433
131439
|
distance: float
|
|
131434
|
-
"""
|
|
131440
|
+
""" (Deprecated: Use Translation Amount input instead.)
|
|
131435
131441
|
|
|
131436
131442
|
:type: float
|
|
131437
131443
|
"""
|
|
131438
131444
|
|
|
131439
131445
|
iterations: int
|
|
131440
|
-
"""
|
|
131446
|
+
""" (Deprecated: Use Samples input instead.)
|
|
131441
131447
|
|
|
131442
131448
|
:type: int
|
|
131443
131449
|
"""
|
|
131444
131450
|
|
|
131445
131451
|
spin: float
|
|
131446
|
-
"""
|
|
131452
|
+
""" (Deprecated: Use Rotation input instead.)
|
|
131447
131453
|
|
|
131448
131454
|
:type: float
|
|
131449
131455
|
"""
|
|
131450
131456
|
|
|
131451
131457
|
zoom: float
|
|
131452
|
-
"""
|
|
131458
|
+
""" (Deprecated: Use Scale input instead.)
|
|
131453
131459
|
|
|
131454
131460
|
:type: float
|
|
131455
131461
|
"""
|
|
@@ -132099,7 +132105,7 @@ class CompositorNodeEllipseMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132099
132105
|
"""Create elliptical mask suitable for use as a simple matte or vignette mask"""
|
|
132100
132106
|
|
|
132101
132107
|
mask_height: float
|
|
132102
|
-
""" Height of the ellipse
|
|
132108
|
+
""" Height of the ellipse. (Deprecated: Use Size input instead.)
|
|
132103
132109
|
|
|
132104
132110
|
:type: float
|
|
132105
132111
|
"""
|
|
@@ -132111,25 +132117,25 @@ class CompositorNodeEllipseMask(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
132111
132117
|
"""
|
|
132112
132118
|
|
|
132113
132119
|
mask_width: float
|
|
132114
|
-
""" Width of the ellipse
|
|
132120
|
+
""" Width of the ellipse. (Deprecated: Use Size input instead.)
|
|
132115
132121
|
|
|
132116
132122
|
:type: float
|
|
132117
132123
|
"""
|
|
132118
132124
|
|
|
132119
132125
|
rotation: float
|
|
132120
|
-
""" Rotation angle of the ellipse
|
|
132126
|
+
""" Rotation angle of the ellipse. (Deprecated: Use Rotation input instead.)
|
|
132121
132127
|
|
|
132122
132128
|
:type: float
|
|
132123
132129
|
"""
|
|
132124
132130
|
|
|
132125
132131
|
x: float
|
|
132126
|
-
""" X position of the middle of the ellipse
|
|
132132
|
+
""" X position of the middle of the ellipse. (Deprecated: Use Position input instead.)
|
|
132127
132133
|
|
|
132128
132134
|
:type: float
|
|
132129
132135
|
"""
|
|
132130
132136
|
|
|
132131
132137
|
y: float
|
|
132132
|
-
""" Y position of the middle of the ellipse
|
|
132138
|
+
""" Y position of the middle of the ellipse. (Deprecated: Use Position input instead.)
|
|
132133
132139
|
|
|
132134
132140
|
:type: float
|
|
132135
132141
|
"""
|
|
@@ -133356,20 +133362,26 @@ class CompositorNodeKuwahara(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133356
133362
|
class CompositorNodeLensdist(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
133357
133363
|
"""Simulate distortion and dispersion from camera lenses"""
|
|
133358
133364
|
|
|
133365
|
+
distortion_type: typing.Literal["RADIAL", "HORIZONTAL"]
|
|
133366
|
+
"""
|
|
133367
|
+
|
|
133368
|
+
:type: typing.Literal['RADIAL','HORIZONTAL']
|
|
133369
|
+
"""
|
|
133370
|
+
|
|
133359
133371
|
use_fit: bool
|
|
133360
|
-
""" For positive distortion factor only: scale image such that black areas are not visible
|
|
133372
|
+
""" For positive distortion factor only: scale image such that black areas are not visible. (Deprecated: Use Fit input instead.)
|
|
133361
133373
|
|
|
133362
133374
|
:type: bool
|
|
133363
133375
|
"""
|
|
133364
133376
|
|
|
133365
133377
|
use_jitter: bool
|
|
133366
|
-
""" Enable/disable jittering (faster, but also noisier)
|
|
133378
|
+
""" Enable/disable jittering (faster, but also noisier). (Deprecated: Use Jitter input instead.)
|
|
133367
133379
|
|
|
133368
133380
|
:type: bool
|
|
133369
133381
|
"""
|
|
133370
133382
|
|
|
133371
133383
|
use_projector: bool
|
|
133372
|
-
""" Enable/disable projector mode (the effect is applied in horizontal direction only)
|
|
133384
|
+
""" Enable/disable projector mode (the effect is applied in horizontal direction only). (Deprecated: Use distortion_type property instead.)
|
|
133373
133385
|
|
|
133374
133386
|
:type: bool
|
|
133375
133387
|
"""
|
|
@@ -133615,7 +133627,7 @@ class CompositorNodeMapUV(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
133615
133627
|
"""Map a texture using UV coordinates, to apply a texture to objects in compositing"""
|
|
133616
133628
|
|
|
133617
133629
|
alpha: int
|
|
133618
|
-
"""
|
|
133630
|
+
""" (Deprecated: Unused.)
|
|
133619
133631
|
|
|
133620
133632
|
:type: int
|
|
133621
133633
|
"""
|
|
@@ -135511,13 +135523,13 @@ class CompositorNodeSunBeams(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
135511
135523
|
"""Create sun beams based on image brightness"""
|
|
135512
135524
|
|
|
135513
135525
|
ray_length: float
|
|
135514
|
-
""" Length of rays as a factor of the image size
|
|
135526
|
+
""" Length of rays as a factor of the image size. (Deprecated: Use Length input instead.)
|
|
135515
135527
|
|
|
135516
135528
|
:type: float
|
|
135517
135529
|
"""
|
|
135518
135530
|
|
|
135519
135531
|
source: bpy_prop_array[float]
|
|
135520
|
-
""" Source point of rays as a factor of the image width and height
|
|
135532
|
+
""" Source point of rays as a factor of the image width and height. (Deprecated: Use Source input instead.)
|
|
135521
135533
|
|
|
135522
135534
|
:type: bpy_prop_array[float]
|
|
135523
135535
|
"""
|
|
@@ -181158,10 +181170,10 @@ class MeshSequenceCacheModifier(Modifier, bpy_struct):
|
|
|
181158
181170
|
:type: str
|
|
181159
181171
|
"""
|
|
181160
181172
|
|
|
181161
|
-
read_data: set[typing.Literal["VERT", "POLY", "UV", "COLOR"]]
|
|
181173
|
+
read_data: set[typing.Literal["VERT", "POLY", "UV", "COLOR", "ATTRIBUTES"]]
|
|
181162
181174
|
""" Data to read from the cache
|
|
181163
181175
|
|
|
181164
|
-
:type: set[typing.Literal['VERT','POLY','UV','COLOR']]
|
|
181176
|
+
:type: set[typing.Literal['VERT','POLY','UV','COLOR','ATTRIBUTES']]
|
|
181165
181177
|
"""
|
|
181166
181178
|
|
|
181167
181179
|
use_vertex_interpolation: bool
|
|
@@ -198562,6 +198574,12 @@ class PreferencesExperimental(bpy_struct):
|
|
|
198562
198574
|
:type: bool
|
|
198563
198575
|
"""
|
|
198564
198576
|
|
|
198577
|
+
write_large_blend_file_blocks: bool
|
|
198578
|
+
""" Enables support for writing .blend files that contain buffers larger than 2 GB. If enabled, any saved files can not be opened by older Blender versions
|
|
198579
|
+
|
|
198580
|
+
:type: bool
|
|
198581
|
+
"""
|
|
198582
|
+
|
|
198565
198583
|
@classmethod
|
|
198566
198584
|
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
198567
198585
|
"""
|
|
@@ -202011,7 +202029,7 @@ class RenderSettings(bpy_struct):
|
|
|
202011
202029
|
"""
|
|
202012
202030
|
|
|
202013
202031
|
ppm_factor: float
|
|
202014
|
-
""" The unit
|
|
202032
|
+
""" The pixel density meta-data written to supported image formats. This value is multiplied by the PPM-base which defines the unit (typically inches or meters)
|
|
202015
202033
|
|
|
202016
202034
|
:type: float
|
|
202017
202035
|
"""
|
|
@@ -80,7 +80,7 @@ bl_operators/object_randomize_transform/__init__.pyi,sha256=s2eF0-2S9YkN-Ms2Epjt
|
|
|
80
80
|
bl_operators/presets/__init__.pyi,sha256=_-PkB5rOnMBoB7KG1yDDASLHgKEkhYfXJ9zkll1naxA,18364
|
|
81
81
|
bl_operators/rigidbody/__init__.pyi,sha256=-tcMsep-Na5zVxpyWXoue9QCQAjT_G0ay9oOkXL50GU,2469
|
|
82
82
|
bl_operators/screen_play_rendered_anim/__init__.pyi,sha256=drEsAFNkHB8m8iJU8qdW9hDDSd0iI7X3bXMxsgaQDmo,793
|
|
83
|
-
bl_operators/sequencer/__init__.pyi,sha256=
|
|
83
|
+
bl_operators/sequencer/__init__.pyi,sha256=5aHRjZTvdMmPUN-Smydt9rKF7UKzYEM7oeBaN0oeLqI,7721
|
|
84
84
|
bl_operators/spreadsheet/__init__.pyi,sha256=FNZU53H0rBDN8lGT1SOZCNmU5dhhmTVFhrLznwbgn_E,984
|
|
85
85
|
bl_operators/userpref/__init__.pyi,sha256=r0shpzyMf4l9lFS0K8mlHApV1dpltYdZmfG42cErRz4,17098
|
|
86
86
|
bl_operators/uvcalc_follow_active/__init__.pyi,sha256=U3DQIzQRLNaWqynXYnm4-tta8Xfttou8tzqV4RSs6Gg,1050
|
|
@@ -192,7 +192,7 @@ bmesh/utils/__init__.pyi,sha256=B2MEUdWjhoPVN_86ZJnKBouszuYlmox83fs_eMy_XSQ,6262
|
|
|
192
192
|
bpy/__init__.pyi,sha256=xqYSQA60ItjGIlcKmU1c67ClE1dzY3IA0l7SeDDfFFg,491
|
|
193
193
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
194
|
bpy/_typing/__init__.pyi,sha256=h3K2LGZ8lcLY-Oo9ym-HEopjGScc4iTfpT1MU_6smTI,126
|
|
195
|
-
bpy/_typing/rna_enums/__init__.pyi,sha256=
|
|
195
|
+
bpy/_typing/rna_enums/__init__.pyi,sha256=PXdYi3PWPEjtPXwGL8Zm_Q0vqnnBxDD0xa1WsSjKdLE,140479
|
|
196
196
|
bpy/app/__init__.pyi,sha256=Xwk-SXH12MBT1wOpGXofw-vK_zhwxtNX41BV9q6WvQE,8797
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
@@ -243,7 +243,7 @@ bpy/ops/mball/__init__.pyi,sha256=vKET4S-NZrDAf4r1XUXjyyW8Ry5bdna9EeQlV3HMo5Y,41
|
|
|
243
243
|
bpy/ops/mesh/__init__.pyi,sha256=hJY7zxCu-W4eU-1F4zyxLDxUL7eDEViPPZRemS2RV6s,132714
|
|
244
244
|
bpy/ops/nla/__init__.pyi,sha256=6C8Gm7ZOBATflqUymRCXljSEKN_oE1MvqVMpR05eVIM,18172
|
|
245
245
|
bpy/ops/node/__init__.pyi,sha256=SA7zC30uMpDZGZWjoUv0lIN5XymthWMnHJJyY_UnzTc,60877
|
|
246
|
-
bpy/ops/object/__init__.pyi,sha256=
|
|
246
|
+
bpy/ops/object/__init__.pyi,sha256=kKGa88PhgNPqjXJuPKFieA8YvnVf9NnQVdLT3p9LMx0,169093
|
|
247
247
|
bpy/ops/outliner/__init__.pyi,sha256=5ksIXcWA2dfw0ogr_yEF5KrQlolqR-8sn3Al3Wx6-Ec,28073
|
|
248
248
|
bpy/ops/paint/__init__.pyi,sha256=U-uMYTkGLmcnkI9RsWRnsbqDLJuLaWPk-5ue5rnoQwg,37692
|
|
249
249
|
bpy/ops/paintcurve/__init__.pyi,sha256=3V3HI5tmtyehUcJyiNj8NO4uj-Q7B9xIvBgnAn3BlmU,3007
|
|
@@ -261,7 +261,7 @@ bpy/ops/screen/__init__.pyi,sha256=_vR_lKVTHrtPV7MVayr1_K7UHow6yA0WOwBeHeE7n0s,1
|
|
|
261
261
|
bpy/ops/script/__init__.pyi,sha256=vY47KMjOW-njjscvnqnLQjxTbPW4-vghTvMj5jzlmJU,1005
|
|
262
262
|
bpy/ops/sculpt/__init__.pyi,sha256=XHqe_RfXtQCIck6MvTyiH7qvKzLdQITWzOYOLaLjxJI,48095
|
|
263
263
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=mx1sIk4zA2ValmxBpDXO6SJccf-Jpvb7y1pXaWX1EI0,2876
|
|
264
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
264
|
+
bpy/ops/sequencer/__init__.pyi,sha256=1OIU7WQEQoXgqd1X-FDXQSwQLMSLehYgKDB-C-rVQl4,78308
|
|
265
265
|
bpy/ops/sound/__init__.pyi,sha256=1cAvk2eDLTyU2JrwXd5-AJfPHHFrbv35MZgaer7b6pc,16956
|
|
266
266
|
bpy/ops/spreadsheet/__init__.pyi,sha256=fUC1jInCBtYAyCryFHP_DIOt6pOopof5WxMIdOh1M_4,1387
|
|
267
267
|
bpy/ops/surface/__init__.pyi,sha256=tvTVuqkjV4znlQBD0F2E52tkGnYDttaPQl7sHwyaOSo,10342
|
|
@@ -279,7 +279,7 @@ bpy/ops/workspace/__init__.pyi,sha256=NdaJuwz3A-gStNuzp_OWR9DIj7oeSgLjn9SUEBLYuN
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=yGX45MUnn9fJYw32UWTsBQ646iN5DbbxfvnoDkREWvI,5537
|
|
281
281
|
bpy/props/__init__.pyi,sha256=4SYl5qfPLRwe3zGyHowQy_i_mU-gjImdiqidFOHP6Tc,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=G-cNi3XDxI8AlgGa4TUEKTdQD-cKofkSaZMmAvTEf78,5597835
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=NwKl40t0SfvM2Lce9VmXS9zh6T-ZE1JxleSh9te_d5E,15351
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=Pji8UKqvI3AJTk5v3nCK92URlJfehxuoaaJW6n9L7XU,2342
|
|
285
285
|
bpy/utils/units/__init__.pyi,sha256=dc9ZViPAqOap5ZsFfWoI0d6bHdri3pWWiVeRxAaZr-U,2672
|
|
@@ -314,7 +314,7 @@ freestyle/functions/__init__.pyi,sha256=RGdlJWbBctqKBR3p81MsXBk9OWdTuvEoOfBXvxjf
|
|
|
314
314
|
freestyle/predicates/__init__.pyi,sha256=Liq_1krkT25RfeNPeEgvKWkLnWtHCuO9-7vXX3lE71E,13488
|
|
315
315
|
freestyle/shaders/__init__.pyi,sha256=imuo4jXkwaN4dazDARvErEGdn9XuMGlWIKGpnqd3Po0,24041
|
|
316
316
|
freestyle/types/__init__.pyi,sha256=zCVqLakrYPiSTlYVHLg-455C9aPCEo-eeO-0A1fYFYs,100227
|
|
317
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
317
|
+
freestyle/utils/__init__.pyi,sha256=k2JFp4C3DUpnkVgR1B32ZDux08pAcsceSuWBnIEHD9A,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=zVeZ4mRNYZyEgbp-j6uZ6ZQTpWFGh7j3R8UT9JOZ_0w,8026
|
|
320
320
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -361,7 +361,7 @@ rna_prop_ui/__init__.pyi,sha256=o3yE2C_BSi2O_ZJM_Jao06i6seWMRNQcZaI6keKjpFE,1308
|
|
|
361
361
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
362
362
|
rna_xml/__init__.pyi,sha256=EBP-inpL9KRsjGftcoza9_G_Do5UjXw62eAvuEMoaO0,604
|
|
363
363
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
364
|
-
fake_bpy_module-
|
|
365
|
-
fake_bpy_module-
|
|
366
|
-
fake_bpy_module-
|
|
367
|
-
fake_bpy_module-
|
|
364
|
+
fake_bpy_module-20250501.dist-info/METADATA,sha256=y5867qZmx0BXAZ_L38ibFdHiZ4Gp18GIj8oKen3kWOQ,7429
|
|
365
|
+
fake_bpy_module-20250501.dist-info/WHEEL,sha256=wXxTzcEDnjrTwFYjLPcsW_7_XihufBwmpiBeiXNBGEA,91
|
|
366
|
+
fake_bpy_module-20250501.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250501.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -125,7 +125,7 @@ def material_from_fedge(fe):
|
|
|
125
125
|
"""get the diffuse RGBA color from an FEdge"""
|
|
126
126
|
|
|
127
127
|
def normal_at_I0D(it): ...
|
|
128
|
-
def pairwise(iterable, types={
|
|
128
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
129
129
|
"""Yields a tuple containing the previous and current object"""
|
|
130
130
|
|
|
131
131
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|