fake-bpy-module 20250324__py3-none-any.whl → 20250326__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/node_add_menu_geometry/__init__.pyi +78 -0
- bpy/_typing/rna_enums/__init__.pyi +18 -0
- bpy/ops/sequencer/__init__.pyi +3 -0
- bpy/types/__init__.pyi +43 -10
- {fake_bpy_module-20250324.dist-info → fake_bpy_module-20250326.dist-info}/METADATA +1 -1
- {fake_bpy_module-20250324.dist-info → fake_bpy_module-20250326.dist-info}/RECORD +9 -9
- {fake_bpy_module-20250324.dist-info → fake_bpy_module-20250326.dist-info}/WHEEL +1 -1
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20250324.dist-info → fake_bpy_module-20250326.dist-info}/top_level.txt +0 -0
|
@@ -759,6 +759,84 @@ class NODE_MT_geometry_node_GEO_GEOMETRY_WRITE(bpy.types.Menu):
|
|
|
759
759
|
:param context:
|
|
760
760
|
"""
|
|
761
761
|
|
|
762
|
+
class NODE_MT_geometry_node_GEO_GREASE_PENCIL(bpy.types.Menu):
|
|
763
|
+
bl_idname: typing.Any
|
|
764
|
+
bl_label: typing.Any
|
|
765
|
+
bl_rna: typing.Any
|
|
766
|
+
id_data: typing.Any
|
|
767
|
+
|
|
768
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
769
|
+
"""
|
|
770
|
+
|
|
771
|
+
:return: The RNA type or default when not found.
|
|
772
|
+
:rtype: bpy.types.Struct
|
|
773
|
+
"""
|
|
774
|
+
|
|
775
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
776
|
+
"""
|
|
777
|
+
|
|
778
|
+
:return: The class or default when not found.
|
|
779
|
+
:rtype: typing.Any
|
|
780
|
+
"""
|
|
781
|
+
|
|
782
|
+
def draw(self, _context):
|
|
783
|
+
"""
|
|
784
|
+
|
|
785
|
+
:param _context:
|
|
786
|
+
"""
|
|
787
|
+
|
|
788
|
+
class NODE_MT_geometry_node_GEO_GREASE_PENCIL_OPERATIONS(bpy.types.Menu):
|
|
789
|
+
bl_idname: typing.Any
|
|
790
|
+
bl_label: typing.Any
|
|
791
|
+
bl_rna: typing.Any
|
|
792
|
+
id_data: typing.Any
|
|
793
|
+
|
|
794
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
795
|
+
"""
|
|
796
|
+
|
|
797
|
+
:return: The RNA type or default when not found.
|
|
798
|
+
:rtype: bpy.types.Struct
|
|
799
|
+
"""
|
|
800
|
+
|
|
801
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
802
|
+
"""
|
|
803
|
+
|
|
804
|
+
:return: The class or default when not found.
|
|
805
|
+
:rtype: typing.Any
|
|
806
|
+
"""
|
|
807
|
+
|
|
808
|
+
def draw(self, _context):
|
|
809
|
+
"""
|
|
810
|
+
|
|
811
|
+
:param _context:
|
|
812
|
+
"""
|
|
813
|
+
|
|
814
|
+
class NODE_MT_geometry_node_GEO_GREASE_PENCIL_READ(bpy.types.Menu):
|
|
815
|
+
bl_idname: typing.Any
|
|
816
|
+
bl_label: typing.Any
|
|
817
|
+
bl_rna: typing.Any
|
|
818
|
+
id_data: typing.Any
|
|
819
|
+
|
|
820
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
821
|
+
"""
|
|
822
|
+
|
|
823
|
+
:return: The RNA type or default when not found.
|
|
824
|
+
:rtype: bpy.types.Struct
|
|
825
|
+
"""
|
|
826
|
+
|
|
827
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
828
|
+
"""
|
|
829
|
+
|
|
830
|
+
:return: The class or default when not found.
|
|
831
|
+
:rtype: typing.Any
|
|
832
|
+
"""
|
|
833
|
+
|
|
834
|
+
def draw(self, _context):
|
|
835
|
+
"""
|
|
836
|
+
|
|
837
|
+
:param _context:
|
|
838
|
+
"""
|
|
839
|
+
|
|
762
840
|
class NODE_MT_geometry_node_GEO_INPUT(bpy.types.Menu):
|
|
763
841
|
bl_idname: typing.Any
|
|
764
842
|
bl_label: typing.Any
|
|
@@ -578,6 +578,7 @@ type EventTypeItems = typing.Literal[
|
|
|
578
578
|
"RIGHT_CTRL", # Right Ctrl.CtrlR.
|
|
579
579
|
"RIGHT_SHIFT", # Right Shift.ShiftR.
|
|
580
580
|
"OSKEY", # OS Key.Cmd.
|
|
581
|
+
"HYPER", # Hyper.Hyp.
|
|
581
582
|
"APP", # Application.App.
|
|
582
583
|
"GRLESS", # Grless.
|
|
583
584
|
"ESC", # Esc.
|
|
@@ -1622,6 +1623,7 @@ type IconItems = typing.Literal[
|
|
|
1622
1623
|
"EVENT_CTRL", # EVENT_CTRL.
|
|
1623
1624
|
"EVENT_ALT", # EVENT_ALT.
|
|
1624
1625
|
"EVENT_OS", # EVENT_OS.
|
|
1626
|
+
"EVENT_HYPER", # EVENT_HYPER.
|
|
1625
1627
|
"EVENT_F1", # EVENT_F1.
|
|
1626
1628
|
"EVENT_F2", # EVENT_F2.
|
|
1627
1629
|
"EVENT_F3", # EVENT_F3.
|
|
@@ -1753,6 +1755,22 @@ type IconItems = typing.Literal[
|
|
|
1753
1755
|
"EVENT_NDOF_BUTTON_DOMINANT", # EVENT_NDOF_BUTTON_DOMINANT.
|
|
1754
1756
|
"EVENT_NDOF_BUTTON_PLUS", # EVENT_NDOF_BUTTON_PLUS.
|
|
1755
1757
|
"EVENT_NDOF_BUTTON_MINUS", # EVENT_NDOF_BUTTON_MINUS.
|
|
1758
|
+
"NODE_SOCKET_FLOAT", # NODE_SOCKET_FLOAT.
|
|
1759
|
+
"NODE_SOCKET_VECTOR", # NODE_SOCKET_VECTOR.
|
|
1760
|
+
"NODE_SOCKET_RGBA", # NODE_SOCKET_RGBA.
|
|
1761
|
+
"NODE_SOCKET_SHADER", # NODE_SOCKET_SHADER.
|
|
1762
|
+
"NODE_SOCKET_BOOLEAN", # NODE_SOCKET_BOOLEAN.
|
|
1763
|
+
"NODE_SOCKET_INT", # NODE_SOCKET_INT.
|
|
1764
|
+
"NODE_SOCKET_STRING", # NODE_SOCKET_STRING.
|
|
1765
|
+
"NODE_SOCKET_OBJECT", # NODE_SOCKET_OBJECT.
|
|
1766
|
+
"NODE_SOCKET_IMAGE", # NODE_SOCKET_IMAGE.
|
|
1767
|
+
"NODE_SOCKET_GEOMETRY", # NODE_SOCKET_GEOMETRY.
|
|
1768
|
+
"NODE_SOCKET_COLLECTION", # NODE_SOCKET_COLLECTION.
|
|
1769
|
+
"NODE_SOCKET_TEXTURE", # NODE_SOCKET_TEXTURE.
|
|
1770
|
+
"NODE_SOCKET_MATERIAL", # NODE_SOCKET_MATERIAL.
|
|
1771
|
+
"NODE_SOCKET_ROTATION", # NODE_SOCKET_ROTATION.
|
|
1772
|
+
"NODE_SOCKET_MENU", # NODE_SOCKET_MENU.
|
|
1773
|
+
"NODE_SOCKET_MATRIX", # NODE_SOCKET_MATRIX.
|
|
1756
1774
|
]
|
|
1757
1775
|
type IdTypeItems = typing.Literal[
|
|
1758
1776
|
"ACTION", # Action.
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1719,6 +1719,7 @@ def slip(
|
|
|
1719
1719
|
/,
|
|
1720
1720
|
*,
|
|
1721
1721
|
offset: float | None = 0.0,
|
|
1722
|
+
slip_keyframes: bool | None = False,
|
|
1722
1723
|
):
|
|
1723
1724
|
"""Slip the contents of selected strips
|
|
1724
1725
|
|
|
@@ -1726,6 +1727,8 @@ def slip(
|
|
|
1726
1727
|
:type undo: bool | None
|
|
1727
1728
|
:param offset: Offset, Offset to the data of the strip
|
|
1728
1729
|
:type offset: float | None
|
|
1730
|
+
:param slip_keyframes: Slip Keyframes, Move the keyframes alongside the media
|
|
1731
|
+
:type slip_keyframes: bool | None
|
|
1729
1732
|
"""
|
|
1730
1733
|
|
|
1731
1734
|
def snap(
|
bpy/types/__init__.pyi
CHANGED
|
@@ -111392,6 +111392,7 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
111392
111392
|
ctrl: int | None = 0,
|
|
111393
111393
|
alt: int | None = 0,
|
|
111394
111394
|
oskey: int | None = 0,
|
|
111395
|
+
hyper: int | None = 0,
|
|
111395
111396
|
key_modifier: bpy._typing.rna_enums.EventTypeItems | None = "NONE",
|
|
111396
111397
|
direction: bpy._typing.rna_enums.EventDirectionItems | None = "ANY",
|
|
111397
111398
|
repeat: bool | None = False,
|
|
@@ -111415,6 +111416,8 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
111415
111416
|
:type alt: int | None
|
|
111416
111417
|
:param oskey: OS Key
|
|
111417
111418
|
:type oskey: int | None
|
|
111419
|
+
:param hyper: Hyper
|
|
111420
|
+
:type hyper: int | None
|
|
111418
111421
|
:param key_modifier: Key Modifier
|
|
111419
111422
|
:type key_modifier: bpy._typing.rna_enums.EventTypeItems | None
|
|
111420
111423
|
:param direction: Direction
|
|
@@ -111438,6 +111441,7 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
111438
111441
|
ctrl: int | None = 0,
|
|
111439
111442
|
alt: int | None = 0,
|
|
111440
111443
|
oskey: int | None = 0,
|
|
111444
|
+
hyper: int | None = 0,
|
|
111441
111445
|
key_modifier: bpy._typing.rna_enums.EventTypeItems | None = "NONE",
|
|
111442
111446
|
direction: bpy._typing.rna_enums.EventDirectionItems | None = "ANY",
|
|
111443
111447
|
repeat: bool | None = False,
|
|
@@ -111460,6 +111464,8 @@ class KeyMapItems(bpy_prop_collection[KeyMapItem], bpy_struct):
|
|
|
111460
111464
|
:type alt: int | None
|
|
111461
111465
|
:param oskey: OS Key
|
|
111462
111466
|
:type oskey: int | None
|
|
111467
|
+
:param hyper: Hyper
|
|
111468
|
+
:type hyper: int | None
|
|
111463
111469
|
:param key_modifier: Key Modifier
|
|
111464
111470
|
:type key_modifier: bpy._typing.rna_enums.EventTypeItems | None
|
|
111465
111471
|
:param direction: Direction
|
|
@@ -126140,13 +126146,13 @@ class ColorManagedViewSettings(bpy_struct):
|
|
|
126140
126146
|
"""
|
|
126141
126147
|
|
|
126142
126148
|
exposure: float
|
|
126143
|
-
""" Exposure (stops) applied before display transform
|
|
126149
|
+
""" Exposure (stops) applied before display transform, multiplying by 2^exposure
|
|
126144
126150
|
|
|
126145
126151
|
:type: float
|
|
126146
126152
|
"""
|
|
126147
126153
|
|
|
126148
126154
|
gamma: float
|
|
126149
|
-
"""
|
|
126155
|
+
""" Additional gamma encoding after display transform, for output with custom gamma
|
|
126150
126156
|
|
|
126151
126157
|
:type: float
|
|
126152
126158
|
"""
|
|
@@ -128415,49 +128421,49 @@ class CompositorNodeCrop(CompositorNode, NodeInternal, Node, bpy_struct):
|
|
|
128415
128421
|
"""Crops image to a smaller region, either making the cropped area transparent or resizing the image"""
|
|
128416
128422
|
|
|
128417
128423
|
max_x: int
|
|
128418
|
-
"""
|
|
128424
|
+
""" Right edge of the cropping rectangle
|
|
128419
128425
|
|
|
128420
128426
|
:type: int
|
|
128421
128427
|
"""
|
|
128422
128428
|
|
|
128423
128429
|
max_y: int
|
|
128424
|
-
"""
|
|
128430
|
+
""" Buttom edge of the cropping rectangle
|
|
128425
128431
|
|
|
128426
128432
|
:type: int
|
|
128427
128433
|
"""
|
|
128428
128434
|
|
|
128429
128435
|
min_x: int
|
|
128430
|
-
"""
|
|
128436
|
+
""" Left edge of the cropping rectangle
|
|
128431
128437
|
|
|
128432
128438
|
:type: int
|
|
128433
128439
|
"""
|
|
128434
128440
|
|
|
128435
128441
|
min_y: int
|
|
128436
|
-
"""
|
|
128442
|
+
""" Top edge of the cropping rectangle
|
|
128437
128443
|
|
|
128438
128444
|
:type: int
|
|
128439
128445
|
"""
|
|
128440
128446
|
|
|
128441
128447
|
rel_max_x: float
|
|
128442
|
-
"""
|
|
128448
|
+
""" Right edge of the cropping rectangle
|
|
128443
128449
|
|
|
128444
128450
|
:type: float
|
|
128445
128451
|
"""
|
|
128446
128452
|
|
|
128447
128453
|
rel_max_y: float
|
|
128448
|
-
"""
|
|
128454
|
+
""" Buttom edge of the cropping rectangle
|
|
128449
128455
|
|
|
128450
128456
|
:type: float
|
|
128451
128457
|
"""
|
|
128452
128458
|
|
|
128453
128459
|
rel_min_x: float
|
|
128454
|
-
"""
|
|
128460
|
+
""" Left edge of the cropping rectangle
|
|
128455
128461
|
|
|
128456
128462
|
:type: float
|
|
128457
128463
|
"""
|
|
128458
128464
|
|
|
128459
128465
|
rel_min_y: float
|
|
128460
|
-
"""
|
|
128466
|
+
""" Top edge of the cropping rectangle
|
|
128461
128467
|
|
|
128462
128468
|
:type: float
|
|
128463
128469
|
"""
|
|
@@ -139499,6 +139505,12 @@ class Event(bpy_struct):
|
|
|
139499
139505
|
:type: bpy._typing.rna_enums.EventDirectionItems
|
|
139500
139506
|
"""
|
|
139501
139507
|
|
|
139508
|
+
hyper: bool
|
|
139509
|
+
""" True when the Hyper key is held
|
|
139510
|
+
|
|
139511
|
+
:type: bool
|
|
139512
|
+
"""
|
|
139513
|
+
|
|
139502
139514
|
is_consecutive: bool
|
|
139503
139515
|
""" Part of a trackpad or NDOF motion, interrupted by cursor motion, button or key press events
|
|
139504
139516
|
|
|
@@ -168934,6 +168946,18 @@ class KeyMapItem(bpy_struct):
|
|
|
168934
168946
|
:type: bpy._typing.rna_enums.EventDirectionItems
|
|
168935
168947
|
"""
|
|
168936
168948
|
|
|
168949
|
+
hyper: int
|
|
168950
|
+
""" Hyper key pressed, -1 for any state
|
|
168951
|
+
|
|
168952
|
+
:type: int
|
|
168953
|
+
"""
|
|
168954
|
+
|
|
168955
|
+
hyper_ui: bool
|
|
168956
|
+
""" Hyper key pressed. An additional modifier which can be configured on Linux, typically replacing CapsLock
|
|
168957
|
+
|
|
168958
|
+
:type: bool
|
|
168959
|
+
"""
|
|
168960
|
+
|
|
168937
168961
|
id: int
|
|
168938
168962
|
""" ID of the item
|
|
168939
168963
|
|
|
@@ -232656,6 +232680,7 @@ class Window(bpy_struct):
|
|
|
232656
232680
|
ctrl: bool | None = False,
|
|
232657
232681
|
alt: bool | None = False,
|
|
232658
232682
|
oskey: bool | None = False,
|
|
232683
|
+
hyper: bool | None = False,
|
|
232659
232684
|
) -> Event:
|
|
232660
232685
|
"""event_simulate
|
|
232661
232686
|
|
|
@@ -232677,6 +232702,8 @@ class Window(bpy_struct):
|
|
|
232677
232702
|
:type alt: bool | None
|
|
232678
232703
|
:param oskey: OS Key
|
|
232679
232704
|
:type oskey: bool | None
|
|
232705
|
+
:param hyper: Hyper
|
|
232706
|
+
:type hyper: bool | None
|
|
232680
232707
|
:return: Item, Added key map item
|
|
232681
232708
|
:rtype: Event
|
|
232682
232709
|
"""
|
|
@@ -236192,6 +236219,12 @@ NODE_MT_geometry_node_GEO_GEOMETRY_SAMPLE: bl_ui.node_add_menu_geometry.NODE_MT_
|
|
|
236192
236219
|
|
|
236193
236220
|
NODE_MT_geometry_node_GEO_GEOMETRY_WRITE: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GEOMETRY_WRITE
|
|
236194
236221
|
|
|
236222
|
+
NODE_MT_geometry_node_GEO_GREASE_PENCIL: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GREASE_PENCIL
|
|
236223
|
+
|
|
236224
|
+
NODE_MT_geometry_node_GEO_GREASE_PENCIL_OPERATIONS: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GREASE_PENCIL_OPERATIONS
|
|
236225
|
+
|
|
236226
|
+
NODE_MT_geometry_node_GEO_GREASE_PENCIL_READ: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_GREASE_PENCIL_READ
|
|
236227
|
+
|
|
236195
236228
|
NODE_MT_geometry_node_GEO_INPUT: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT
|
|
236196
236229
|
|
|
236197
236230
|
NODE_MT_geometry_node_GEO_INPUT_CONSTANT: bl_ui.node_add_menu_geometry.NODE_MT_geometry_node_GEO_INPUT_CONSTANT
|
|
@@ -106,7 +106,7 @@ bl_ui/asset_shelf/__init__.pyi,sha256=a1Luz9261xl7H_T1atH9oWX_wkAvoWAhuy3l43vrpM
|
|
|
106
106
|
bl_ui/generic_ui_list/__init__.pyi,sha256=wPk6voYuY-Reey45ueRE36_vABh9g8SbMS7JNIVtPUw,4232
|
|
107
107
|
bl_ui/node_add_menu/__init__.pyi,sha256=PJkKJHijLR0debXhk69hD1dYqR6Reu5070xX92n3xLc,1175
|
|
108
108
|
bl_ui/node_add_menu_compositor/__init__.pyi,sha256=3-1DZWLP3D3BCPY1VeQ-BBzGN-xN7QCJ2FIiAkgTvNM,9820
|
|
109
|
-
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=
|
|
109
|
+
bl_ui/node_add_menu_geometry/__init__.pyi,sha256=rTr7qm5R5j-NjlyD6BHVIsx8Hd2odCKOQp1eu-vvG28,30302
|
|
110
110
|
bl_ui/node_add_menu_shader/__init__.pyi,sha256=Qwqrc5VmIsiOJK1cAcH42nvjhNBqhLi56Zl_RtBQRI8,6014
|
|
111
111
|
bl_ui/node_add_menu_texture/__init__.pyi,sha256=31td-iGV1FsDFcF3No2aq0YlYKEGXypd2Y0dCt1mPdc,5267
|
|
112
112
|
bl_ui/properties_animviz/__init__.pyi,sha256=hLQAP2Pwl9da7V7GwBjLgWwLbkaF86rgwagt_cj-_Pg,689
|
|
@@ -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=k78GM1fpvjYY8ockGmwtvZYWDyURIMmzxhaQFEq3G98,139823
|
|
196
196
|
bpy/app/__init__.pyi,sha256=rDLfx3HzxNGIixHun4sUA-1fuNUq6bxyQswbTvYeJ9M,8766
|
|
197
197
|
bpy/app/handlers/__init__.pyi,sha256=A9IS2EmBskYtGy2aMCX5vxAmTKB3YCuz1hUPZvah8S4,6938
|
|
198
198
|
bpy/app/icons/__init__.pyi,sha256=IxxJA0uPQaBAogv-iZ2jEG-5f6i3X9M-gRjw8jJnL8A,955
|
|
@@ -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=YJ0vdH_3uWC5YhC0d9qMIGlTSziiKG8-Be3j9ay9Mpo,47267
|
|
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=S-WX790mr5xe7Li442jJ6xVvekv3bCk82sfPqoRHdxQ,78313
|
|
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=hXSSQZl7IwVFrxMveYrlSKGWY7BjrsV-cKagPzhuT0
|
|
|
279
279
|
bpy/ops/world/__init__.pyi,sha256=9OhY87-WRRLor-4GQJhDiDJG3M9W5s9yFo9x45Iiycs,628
|
|
280
280
|
bpy/path/__init__.pyi,sha256=7-_wXRbyGJSoalxgAiuGAPvcM988qoM5DdQ2A8p1kpk,5507
|
|
281
281
|
bpy/props/__init__.pyi,sha256=QR_11bCyEyK-Q85yZhNDW6BsqHVq73C9IL_qShksqQU,35264
|
|
282
|
-
bpy/types/__init__.pyi,sha256=
|
|
282
|
+
bpy/types/__init__.pyi,sha256=QORGh2r2YgRgZg3xK8c_bSE0PrjKT8N3UlP_05rzWZU,5492148
|
|
283
283
|
bpy/utils/__init__.pyi,sha256=sTpVkInNYv883pb3TyZzGLQbn468mQHzz_sUG9UMp6M,14936
|
|
284
284
|
bpy/utils/previews/__init__.pyi,sha256=RF4ii5Rs-FetM_ZmC0GCpMSiin5evppVj62-CmKK76s,2307
|
|
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=ub0HsAFKN7jMbNu3fuP9OpaOSHywBpSckuXSexz0Bos,5135
|
|
318
318
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=YvDLJXMxKbbqBS0so4MnfuSN1g4wNAFOXbpW7_g4AR0,3472
|
|
319
319
|
gpu/__init__.pyi,sha256=80Udrv8AAvblVeWgcU709t4PmsX3ShvU2TaWj7qv0uk,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-20250326.dist-info/METADATA,sha256=-ljbMXiKdfQ_3gqfYGf1eFVpyoY9i8veTBUIPm8oXIQ,7429
|
|
365
|
+
fake_bpy_module-20250326.dist-info/WHEEL,sha256=CmyFI0kx5cdEMTLiONQRbGQwjIoR1aIYB7eCAQ4KPJ0,91
|
|
366
|
+
fake_bpy_module-20250326.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
367
|
+
fake_bpy_module-20250326.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={Stroke, StrokeVertexIterator}):
|
|
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
|