fake-bpy-module 20241121__py3-none-any.whl → 20241123__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_sequencer/__init__.pyi +129 -0
- bpy/types/__init__.pyi +156 -4
- bpy/typing/__init__.pyi +2 -0
- {fake_bpy_module-20241121.dist-info → fake_bpy_module-20241123.dist-info}/METADATA +1 -1
- {fake_bpy_module-20241121.dist-info → fake_bpy_module-20241123.dist-info}/RECORD +8 -8
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20241121.dist-info → fake_bpy_module-20241123.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241121.dist-info → fake_bpy_module-20241123.dist-info}/top_level.txt +0 -0
|
@@ -1425,6 +1425,49 @@ class SEQUENCER_PT_effect(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1425
1425
|
:param context:
|
|
1426
1426
|
"""
|
|
1427
1427
|
|
|
1428
|
+
class SEQUENCER_PT_effect_text_box(SequencerButtonsPanel, bpy.types.Panel):
|
|
1429
|
+
bl_category: typing.Any
|
|
1430
|
+
bl_label: typing.Any
|
|
1431
|
+
bl_options: typing.Any
|
|
1432
|
+
bl_parent_id: typing.Any
|
|
1433
|
+
bl_region_type: typing.Any
|
|
1434
|
+
bl_rna: typing.Any
|
|
1435
|
+
bl_space_type: typing.Any
|
|
1436
|
+
id_data: typing.Any
|
|
1437
|
+
|
|
1438
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1439
|
+
"""
|
|
1440
|
+
|
|
1441
|
+
:return: The RNA type or default when not found.
|
|
1442
|
+
:rtype: bpy.types.Struct
|
|
1443
|
+
"""
|
|
1444
|
+
|
|
1445
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1446
|
+
"""
|
|
1447
|
+
|
|
1448
|
+
:return: The class or default when not found.
|
|
1449
|
+
:rtype: typing.Any
|
|
1450
|
+
"""
|
|
1451
|
+
|
|
1452
|
+
def draw(self, context):
|
|
1453
|
+
"""
|
|
1454
|
+
|
|
1455
|
+
:param context:
|
|
1456
|
+
"""
|
|
1457
|
+
|
|
1458
|
+
def draw_header(self, context):
|
|
1459
|
+
"""
|
|
1460
|
+
|
|
1461
|
+
:param context:
|
|
1462
|
+
"""
|
|
1463
|
+
|
|
1464
|
+
@classmethod
|
|
1465
|
+
def poll(cls, context):
|
|
1466
|
+
"""
|
|
1467
|
+
|
|
1468
|
+
:param context:
|
|
1469
|
+
"""
|
|
1470
|
+
|
|
1428
1471
|
class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy.types.Panel):
|
|
1429
1472
|
bl_category: typing.Any
|
|
1430
1473
|
bl_label: typing.Any
|
|
@@ -1461,6 +1504,92 @@ class SEQUENCER_PT_effect_text_layout(SequencerButtonsPanel, bpy.types.Panel):
|
|
|
1461
1504
|
:param context:
|
|
1462
1505
|
"""
|
|
1463
1506
|
|
|
1507
|
+
class SEQUENCER_PT_effect_text_outline(SequencerButtonsPanel, bpy.types.Panel):
|
|
1508
|
+
bl_category: typing.Any
|
|
1509
|
+
bl_label: typing.Any
|
|
1510
|
+
bl_options: typing.Any
|
|
1511
|
+
bl_parent_id: typing.Any
|
|
1512
|
+
bl_region_type: typing.Any
|
|
1513
|
+
bl_rna: typing.Any
|
|
1514
|
+
bl_space_type: typing.Any
|
|
1515
|
+
id_data: typing.Any
|
|
1516
|
+
|
|
1517
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1518
|
+
"""
|
|
1519
|
+
|
|
1520
|
+
:return: The RNA type or default when not found.
|
|
1521
|
+
:rtype: bpy.types.Struct
|
|
1522
|
+
"""
|
|
1523
|
+
|
|
1524
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1525
|
+
"""
|
|
1526
|
+
|
|
1527
|
+
:return: The class or default when not found.
|
|
1528
|
+
:rtype: typing.Any
|
|
1529
|
+
"""
|
|
1530
|
+
|
|
1531
|
+
def draw(self, context):
|
|
1532
|
+
"""
|
|
1533
|
+
|
|
1534
|
+
:param context:
|
|
1535
|
+
"""
|
|
1536
|
+
|
|
1537
|
+
def draw_header(self, context):
|
|
1538
|
+
"""
|
|
1539
|
+
|
|
1540
|
+
:param context:
|
|
1541
|
+
"""
|
|
1542
|
+
|
|
1543
|
+
@classmethod
|
|
1544
|
+
def poll(cls, context):
|
|
1545
|
+
"""
|
|
1546
|
+
|
|
1547
|
+
:param context:
|
|
1548
|
+
"""
|
|
1549
|
+
|
|
1550
|
+
class SEQUENCER_PT_effect_text_shadow(SequencerButtonsPanel, bpy.types.Panel):
|
|
1551
|
+
bl_category: typing.Any
|
|
1552
|
+
bl_label: typing.Any
|
|
1553
|
+
bl_options: typing.Any
|
|
1554
|
+
bl_parent_id: typing.Any
|
|
1555
|
+
bl_region_type: typing.Any
|
|
1556
|
+
bl_rna: typing.Any
|
|
1557
|
+
bl_space_type: typing.Any
|
|
1558
|
+
id_data: typing.Any
|
|
1559
|
+
|
|
1560
|
+
def bl_rna_get_subclass(self) -> bpy.types.Struct:
|
|
1561
|
+
"""
|
|
1562
|
+
|
|
1563
|
+
:return: The RNA type or default when not found.
|
|
1564
|
+
:rtype: bpy.types.Struct
|
|
1565
|
+
"""
|
|
1566
|
+
|
|
1567
|
+
def bl_rna_get_subclass_py(self) -> typing.Any:
|
|
1568
|
+
"""
|
|
1569
|
+
|
|
1570
|
+
:return: The class or default when not found.
|
|
1571
|
+
:rtype: typing.Any
|
|
1572
|
+
"""
|
|
1573
|
+
|
|
1574
|
+
def draw(self, context):
|
|
1575
|
+
"""
|
|
1576
|
+
|
|
1577
|
+
:param context:
|
|
1578
|
+
"""
|
|
1579
|
+
|
|
1580
|
+
def draw_header(self, context):
|
|
1581
|
+
"""
|
|
1582
|
+
|
|
1583
|
+
:param context:
|
|
1584
|
+
"""
|
|
1585
|
+
|
|
1586
|
+
@classmethod
|
|
1587
|
+
def poll(cls, context):
|
|
1588
|
+
"""
|
|
1589
|
+
|
|
1590
|
+
:param context:
|
|
1591
|
+
"""
|
|
1592
|
+
|
|
1464
1593
|
class SEQUENCER_PT_effect_text_style(SequencerButtonsPanel, bpy.types.Panel):
|
|
1465
1594
|
bl_category: typing.Any
|
|
1466
1595
|
bl_label: typing.Any
|
bpy/types/__init__.pyi
CHANGED
|
@@ -66756,6 +66756,48 @@ Shared Enum Types <bpy_types_enum_items/index>
|
|
|
66756
66756
|
:columns: 2
|
|
66757
66757
|
|
|
66758
66758
|
|
|
66759
|
+
--------------------
|
|
66760
|
+
|
|
66761
|
+
* bpy_struct.id_data
|
|
66762
|
+
* Attribute.name
|
|
66763
|
+
* Attribute.data_type
|
|
66764
|
+
* Attribute.domain
|
|
66765
|
+
* Attribute.is_internal
|
|
66766
|
+
* Attribute.is_required
|
|
66767
|
+
|
|
66768
|
+
:columns: 2
|
|
66769
|
+
|
|
66770
|
+
|
|
66771
|
+
--------------------
|
|
66772
|
+
|
|
66773
|
+
* bpy_struct.as_pointer
|
|
66774
|
+
* bpy_struct.driver_add
|
|
66775
|
+
* bpy_struct.driver_remove
|
|
66776
|
+
* bpy_struct.get
|
|
66777
|
+
* bpy_struct.id_properties_clear
|
|
66778
|
+
* bpy_struct.id_properties_ensure
|
|
66779
|
+
* bpy_struct.id_properties_ui
|
|
66780
|
+
* bpy_struct.is_property_hidden
|
|
66781
|
+
* bpy_struct.is_property_overridable_library
|
|
66782
|
+
* bpy_struct.is_property_readonly
|
|
66783
|
+
* bpy_struct.is_property_set
|
|
66784
|
+
* bpy_struct.items
|
|
66785
|
+
* bpy_struct.keyframe_delete
|
|
66786
|
+
* bpy_struct.keyframe_insert
|
|
66787
|
+
* bpy_struct.keys
|
|
66788
|
+
* bpy_struct.path_from_id
|
|
66789
|
+
* bpy_struct.path_resolve
|
|
66790
|
+
* bpy_struct.pop
|
|
66791
|
+
* bpy_struct.property_overridable_library_set
|
|
66792
|
+
* bpy_struct.property_unset
|
|
66793
|
+
* bpy_struct.type_recast
|
|
66794
|
+
* bpy_struct.values
|
|
66795
|
+
* Attribute.bl_rna_get_subclass
|
|
66796
|
+
* Attribute.bl_rna_get_subclass_py
|
|
66797
|
+
|
|
66798
|
+
:columns: 2
|
|
66799
|
+
|
|
66800
|
+
|
|
66759
66801
|
--------------------
|
|
66760
66802
|
|
|
66761
66803
|
* bpy_struct.id_data
|
|
@@ -74642,6 +74684,48 @@ of the scene and only show nodes of the renderer they are designed for.
|
|
|
74642
74684
|
:columns: 2
|
|
74643
74685
|
|
|
74644
74686
|
|
|
74687
|
+
--------------------
|
|
74688
|
+
|
|
74689
|
+
* Short2Attribute.data
|
|
74690
|
+
|
|
74691
|
+
:columns: 2
|
|
74692
|
+
|
|
74693
|
+
|
|
74694
|
+
--------------------
|
|
74695
|
+
|
|
74696
|
+
* bpy_struct.id_data
|
|
74697
|
+
|
|
74698
|
+
:columns: 2
|
|
74699
|
+
|
|
74700
|
+
|
|
74701
|
+
--------------------
|
|
74702
|
+
|
|
74703
|
+
* bpy_struct.as_pointer
|
|
74704
|
+
* bpy_struct.driver_add
|
|
74705
|
+
* bpy_struct.driver_remove
|
|
74706
|
+
* bpy_struct.get
|
|
74707
|
+
* bpy_struct.id_properties_clear
|
|
74708
|
+
* bpy_struct.id_properties_ensure
|
|
74709
|
+
* bpy_struct.id_properties_ui
|
|
74710
|
+
* bpy_struct.is_property_hidden
|
|
74711
|
+
* bpy_struct.is_property_overridable_library
|
|
74712
|
+
* bpy_struct.is_property_readonly
|
|
74713
|
+
* bpy_struct.is_property_set
|
|
74714
|
+
* bpy_struct.items
|
|
74715
|
+
* bpy_struct.keyframe_delete
|
|
74716
|
+
* bpy_struct.keyframe_insert
|
|
74717
|
+
* bpy_struct.keys
|
|
74718
|
+
* bpy_struct.path_from_id
|
|
74719
|
+
* bpy_struct.path_resolve
|
|
74720
|
+
* bpy_struct.pop
|
|
74721
|
+
* bpy_struct.property_overridable_library_set
|
|
74722
|
+
* bpy_struct.property_unset
|
|
74723
|
+
* bpy_struct.type_recast
|
|
74724
|
+
* bpy_struct.values
|
|
74725
|
+
|
|
74726
|
+
:columns: 2
|
|
74727
|
+
|
|
74728
|
+
|
|
74645
74729
|
--------------------
|
|
74646
74730
|
|
|
74647
74731
|
* ToolSettings.sequencer_tool_settings
|
|
@@ -157743,10 +157827,10 @@ class GreasePencilEnvelopeModifier(Modifier, bpy_struct):
|
|
|
157743
157827
|
class GreasePencilFrame(bpy_struct):
|
|
157744
157828
|
"""A Grease Pencil keyframe"""
|
|
157745
157829
|
|
|
157746
|
-
drawing: GreasePencilDrawing
|
|
157830
|
+
drawing: GreasePencilDrawing | None
|
|
157747
157831
|
""" A Grease Pencil drawing
|
|
157748
157832
|
|
|
157749
|
-
:type: GreasePencilDrawing
|
|
157833
|
+
:type: GreasePencilDrawing | None
|
|
157750
157834
|
"""
|
|
157751
157835
|
|
|
157752
157836
|
frame_number: int
|
|
@@ -190159,8 +190243,8 @@ class PreferencesExperimental(bpy_struct):
|
|
|
190159
190243
|
:type: bool
|
|
190160
190244
|
"""
|
|
190161
190245
|
|
|
190162
|
-
|
|
190163
|
-
""" Enable the
|
|
190246
|
+
enable_overlay_legacy: bool
|
|
190247
|
+
""" Enable the legacy Overlay codebase, requires restart
|
|
190164
190248
|
|
|
190165
190249
|
:type: bool
|
|
190166
190250
|
"""
|
|
@@ -205663,6 +205747,68 @@ class ShapeKeyPoint(bpy_struct):
|
|
|
205663
205747
|
:rtype: typing.Any
|
|
205664
205748
|
"""
|
|
205665
205749
|
|
|
205750
|
+
class Short2Attribute(Attribute, bpy_struct):
|
|
205751
|
+
"""Geometry attribute that stores 2D integer vectors"""
|
|
205752
|
+
|
|
205753
|
+
data: bpy_prop_collection[Short2AttributeValue]
|
|
205754
|
+
"""
|
|
205755
|
+
|
|
205756
|
+
:type: bpy_prop_collection[Short2AttributeValue]
|
|
205757
|
+
"""
|
|
205758
|
+
|
|
205759
|
+
@classmethod
|
|
205760
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
205761
|
+
"""
|
|
205762
|
+
|
|
205763
|
+
:param id: The RNA type identifier.
|
|
205764
|
+
:type id: str | None
|
|
205765
|
+
:param default:
|
|
205766
|
+
:return: The RNA type or default when not found.
|
|
205767
|
+
:rtype: Struct
|
|
205768
|
+
"""
|
|
205769
|
+
|
|
205770
|
+
@classmethod
|
|
205771
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
205772
|
+
"""
|
|
205773
|
+
|
|
205774
|
+
:param id: The RNA type identifier.
|
|
205775
|
+
:type id: str | None
|
|
205776
|
+
:param default:
|
|
205777
|
+
:return: The class or default when not found.
|
|
205778
|
+
:rtype: typing.Any
|
|
205779
|
+
"""
|
|
205780
|
+
|
|
205781
|
+
class Short2AttributeValue(bpy_struct):
|
|
205782
|
+
"""2D value in geometry attribute"""
|
|
205783
|
+
|
|
205784
|
+
value: bpy_prop_array[int]
|
|
205785
|
+
""" 2D vector
|
|
205786
|
+
|
|
205787
|
+
:type: bpy_prop_array[int]
|
|
205788
|
+
"""
|
|
205789
|
+
|
|
205790
|
+
@classmethod
|
|
205791
|
+
def bl_rna_get_subclass(cls, id: str | None, default=None) -> Struct:
|
|
205792
|
+
"""
|
|
205793
|
+
|
|
205794
|
+
:param id: The RNA type identifier.
|
|
205795
|
+
:type id: str | None
|
|
205796
|
+
:param default:
|
|
205797
|
+
:return: The RNA type or default when not found.
|
|
205798
|
+
:rtype: Struct
|
|
205799
|
+
"""
|
|
205800
|
+
|
|
205801
|
+
@classmethod
|
|
205802
|
+
def bl_rna_get_subclass_py(cls, id: str | None, default=None) -> typing.Any:
|
|
205803
|
+
"""
|
|
205804
|
+
|
|
205805
|
+
:param id: The RNA type identifier.
|
|
205806
|
+
:type id: str | None
|
|
205807
|
+
:param default:
|
|
205808
|
+
:return: The class or default when not found.
|
|
205809
|
+
:rtype: typing.Any
|
|
205810
|
+
"""
|
|
205811
|
+
|
|
205666
205812
|
class ShrinkwrapConstraint(Constraint, bpy_struct):
|
|
205667
205813
|
"""Create constraint-based shrinkwrap relationship"""
|
|
205668
205814
|
|
|
@@ -232583,8 +232729,14 @@ SEQUENCER_PT_custom_props: bl_ui.space_sequencer.SEQUENCER_PT_custom_props
|
|
|
232583
232729
|
|
|
232584
232730
|
SEQUENCER_PT_effect: bl_ui.space_sequencer.SEQUENCER_PT_effect
|
|
232585
232731
|
|
|
232732
|
+
SEQUENCER_PT_effect_text_box: bl_ui.space_sequencer.SEQUENCER_PT_effect_text_box
|
|
232733
|
+
|
|
232586
232734
|
SEQUENCER_PT_effect_text_layout: bl_ui.space_sequencer.SEQUENCER_PT_effect_text_layout
|
|
232587
232735
|
|
|
232736
|
+
SEQUENCER_PT_effect_text_outline: bl_ui.space_sequencer.SEQUENCER_PT_effect_text_outline
|
|
232737
|
+
|
|
232738
|
+
SEQUENCER_PT_effect_text_shadow: bl_ui.space_sequencer.SEQUENCER_PT_effect_text_shadow
|
|
232739
|
+
|
|
232588
232740
|
SEQUENCER_PT_effect_text_style: bl_ui.space_sequencer.SEQUENCER_PT_effect_text_style
|
|
232589
232741
|
|
|
232590
232742
|
SEQUENCER_PT_frame_overlay: bl_ui.space_sequencer.SEQUENCER_PT_frame_overlay
|
bpy/typing/__init__.pyi
CHANGED
|
@@ -80,6 +80,7 @@ type AttributeTypeItems = typing.Literal[
|
|
|
80
80
|
"BOOLEAN", # Boolean.True or false.
|
|
81
81
|
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
82
82
|
"INT8", # 8-Bit Integer.Smaller integer with a range from -128 to 127.
|
|
83
|
+
"INT16_2D", # 2D 16-Bit Integer Vector.16-bit signed integer vector.
|
|
83
84
|
"INT32_2D", # 2D Integer Vector.32-bit signed integer vector.
|
|
84
85
|
"QUATERNION", # Quaternion.Floating point quaternion rotation.
|
|
85
86
|
"FLOAT4X4", # 4x4 Matrix.Floating point matrix.
|
|
@@ -95,6 +96,7 @@ type AttributeTypeWithAutoItems = typing.Literal[
|
|
|
95
96
|
"BOOLEAN", # Boolean.True or false.
|
|
96
97
|
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
97
98
|
"FLOAT2", # 2D Vector.2D vector with floating-point values.
|
|
99
|
+
"INT16_2D", # 2D 16-Bit Integer Vector.16-bit signed integer vector.
|
|
98
100
|
"INT32_2D", # 2D Integer Vector.32-bit signed integer vector.
|
|
99
101
|
"QUATERNION", # Quaternion.Floating point quaternion rotation.
|
|
100
102
|
"FLOAT4X4", # 4x4 Matrix.Floating point matrix.
|
|
@@ -163,7 +163,7 @@ bl_ui/space_nla/__init__.pyi,sha256=uT7nGRBlJlDS-wYZGGGuMs17DK-_XsYoa1qkop7ZVyM,
|
|
|
163
163
|
bl_ui/space_node/__init__.pyi,sha256=OnpafsiQblbl9V6zaxCO7H0i-i9BsSH_XmtjvS84nUA,18798
|
|
164
164
|
bl_ui/space_outliner/__init__.pyi,sha256=o_7H2lQtpKIncGyBU2lL7SHOp-emrqicrRoOBkjwMIg,8090
|
|
165
165
|
bl_ui/space_properties/__init__.pyi,sha256=U4lQ2UupgDfM0RBCSQrI-MlmNG2pOtBxwn5gED-7jzU,2708
|
|
166
|
-
bl_ui/space_sequencer/__init__.pyi,sha256=
|
|
166
|
+
bl_ui/space_sequencer/__init__.pyi,sha256=DQWB0VpyjH7tdTM4-OBpVUgUXPZYqspBzPLEwd85H94,54686
|
|
167
167
|
bl_ui/space_spreadsheet/__init__.pyi,sha256=FcAaZ7hZHyyk9EmM8YuVaDZhFFafRUPbrnXftJ74xMY,1450
|
|
168
168
|
bl_ui/space_statusbar/__init__.pyi,sha256=Kb64lM_S6RVATyQB1kQu-x7JSGceXsGqNyJ6AReq3-Y,611
|
|
169
169
|
bl_ui/space_text/__init__.pyi,sha256=l5CwsrWjvBl_CQQQqfjH7SbRVeAkK7z9R8UAi7GY59c,8799
|
|
@@ -275,8 +275,8 @@ bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJ
|
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
276
276
|
bpy/path/__init__.pyi,sha256=b_M-IUy-VEWMDZJH0bP9P-HHcLLcQo59S1dARRQrP9E,5064
|
|
277
277
|
bpy/props/__init__.pyi,sha256=TfulJGBHgbMIc1aadTzLWiL6Q2NQdeO9Q4_ePasNesU,30717
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
279
|
-
bpy/typing/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=z-P_FVHPEF3DwS7i8Qn1m_lZtqLFnE02iGr-XA632Pc,5366788
|
|
279
|
+
bpy/typing/__init__.pyi,sha256=aVkYVtSgroaQKvNT7B1qcJ6BadJHTk_LqIuuM1BPWWY,138925
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=XXoE6J8aW13NQ-2FvnFORXyNVUFfO8hSno-xfgJ6ZNI,13078
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=XEThA7jxMWet1sPTJ3mmngM6LdAdKiIVSZOKbCsbvzw,2217
|
|
282
282
|
bpy/utils/units/__init__.pyi,sha256=-NsCsGdfcIsC2lnZwzUrQFe1CXdnSjA80MCWSSxwbbk,2578
|
|
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=XYveitaHq0iT_FRPa9-h7r_Qz1kuEOknwlIDy5hR
|
|
|
311
311
|
freestyle/predicates/__init__.pyi,sha256=TI-9arpIRbq7ePsxHS-d-4iIj54uHMp-ZyGhPVODMPg,13461
|
|
312
312
|
freestyle/shaders/__init__.pyi,sha256=1Ov48B4P7LV3dwjBqHqqqbPFRBZWjENqIDaFb97Qdj0,23835
|
|
313
313
|
freestyle/types/__init__.pyi,sha256=Gqn4Lt8Z7R3JhDQDF70AhHcWw7v4zE3ot9CUXZAlsds,97165
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
314
|
+
freestyle/utils/__init__.pyi,sha256=CrWHBvKHm2p1i7_ND1rQJLSjutpEx7YANq2OViTvXNs,5077
|
|
315
315
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=AdK38eLUN8YDE2Y-Am3gNUYxduClt0jmaDbr-WNv_cA,3401
|
|
316
316
|
gpu/__init__.pyi,sha256=Q-AbyJO85pPYcwXNWtvgAhFGGJ6OnnHrlsXQxur9jhs,7999
|
|
317
317
|
gpu/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -358,7 +358,7 @@ rna_prop_ui/__init__.pyi,sha256=lShhkbbeJ_ANi2dy4J4HIkyp1HZrMqCfhcf8QpAQsj0,1281
|
|
|
358
358
|
rna_prop_ui/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
359
359
|
rna_xml/__init__.pyi,sha256=idYsAZj-_egBKMA2pQl2P9IoNhZxXIkBSALFuq-ylO8,577
|
|
360
360
|
rna_xml/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
361
|
-
fake_bpy_module-
|
|
362
|
-
fake_bpy_module-
|
|
363
|
-
fake_bpy_module-
|
|
364
|
-
fake_bpy_module-
|
|
361
|
+
fake_bpy_module-20241123.dist-info/METADATA,sha256=243mIygMou1nUUZ4iqxQyPVcxqhsNYm9eDhkipbSEmA,7289
|
|
362
|
+
fake_bpy_module-20241123.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
363
|
+
fake_bpy_module-20241123.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241123.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -123,7 +123,7 @@ def material_from_fedge(fe):
|
|
|
123
123
|
"""get the diffuse RGBA color from an FEdge"""
|
|
124
124
|
|
|
125
125
|
def normal_at_I0D(it): ...
|
|
126
|
-
def pairwise(iterable, types={
|
|
126
|
+
def pairwise(iterable, types={StrokeVertexIterator, Stroke}):
|
|
127
127
|
"""Yields a tuple containing the previous and current object"""
|
|
128
128
|
|
|
129
129
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|