fake-bpy-module 20241010__py3-none-any.whl → 20241012__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/properties_paint_common/__init__.pyi +6 -0
- bmesh/ops/__init__.pyi +12 -0
- bmesh/types/__init__.pyi +188 -106
- bpy/ops/mesh/__init__.pyi +12 -0
- bpy/ops/sequencer/__init__.pyi +1 -1
- bpy/ops/wm/__init__.pyi +43 -2
- bpy/types/__init__.pyi +51 -4
- {fake_bpy_module-20241010.dist-info → fake_bpy_module-20241012.dist-info}/METADATA +3 -4
- {fake_bpy_module-20241010.dist-info → fake_bpy_module-20241012.dist-info}/RECORD +12 -12
- freestyle/utils/__init__.pyi +1 -1
- {fake_bpy_module-20241010.dist-info → fake_bpy_module-20241012.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20241010.dist-info → fake_bpy_module-20241012.dist-info}/top_level.txt +0 -0
bmesh/ops/__init__.pyi
CHANGED
|
@@ -1159,6 +1159,10 @@ def join_triangles(
|
|
|
1159
1159
|
cmp_materials: bool = False,
|
|
1160
1160
|
angle_face_threshold: float = 0,
|
|
1161
1161
|
angle_shape_threshold: float = 0,
|
|
1162
|
+
topology_influence: float = 0,
|
|
1163
|
+
deselect_joined: bool = False,
|
|
1164
|
+
merge_limit: int = 0,
|
|
1165
|
+
neighbor_debug: int = 0,
|
|
1162
1166
|
) -> dict[str, typing.Any]:
|
|
1163
1167
|
"""Join Triangles.Tries to intelligently join triangles according
|
|
1164
1168
|
to angle threshold and delimiters.
|
|
@@ -1181,6 +1185,14 @@ def join_triangles(
|
|
|
1181
1185
|
:type angle_face_threshold: float
|
|
1182
1186
|
:param angle_shape_threshold: Undocumented.
|
|
1183
1187
|
:type angle_shape_threshold: float
|
|
1188
|
+
:param topology_influence: Undocumented.
|
|
1189
|
+
:type topology_influence: float
|
|
1190
|
+
:param deselect_joined: Undocumented.
|
|
1191
|
+
:type deselect_joined: bool
|
|
1192
|
+
:param merge_limit: Undocumented.
|
|
1193
|
+
:type merge_limit: int
|
|
1194
|
+
:param neighbor_debug: Undocumented.
|
|
1195
|
+
:type neighbor_debug: int
|
|
1184
1196
|
:return: faces: joined faces
|
|
1185
1197
|
|
|
1186
1198
|
type list of (`bmesh.types.BMFace`)
|
bmesh/types/__init__.pyi
CHANGED
|
@@ -62,7 +62,7 @@ class BMDeformVert:
|
|
|
62
62
|
:rtype: list[float]
|
|
63
63
|
"""
|
|
64
64
|
|
|
65
|
-
class BMEdge:
|
|
65
|
+
class BMEdge[_GenericType1]:
|
|
66
66
|
"""The BMesh edge connecting 2 verts"""
|
|
67
67
|
|
|
68
68
|
hide: bool
|
|
@@ -227,29 +227,29 @@ class BMEdge:
|
|
|
227
227
|
:type select: bool
|
|
228
228
|
"""
|
|
229
229
|
|
|
230
|
-
def __getitem__(self, key: BMLayerItem) ->
|
|
230
|
+
def __getitem__(self, key: BMLayerItem[_GenericType1]) -> _GenericType1:
|
|
231
231
|
"""
|
|
232
232
|
|
|
233
233
|
:param key:
|
|
234
|
-
:type key: BMLayerItem
|
|
234
|
+
:type key: BMLayerItem[_GenericType1]
|
|
235
235
|
:return:
|
|
236
|
-
:rtype:
|
|
236
|
+
:rtype: _GenericType1
|
|
237
237
|
"""
|
|
238
238
|
|
|
239
|
-
def __setitem__(self, key: BMLayerItem, value:
|
|
239
|
+
def __setitem__(self, key: BMLayerItem[_GenericType1], value: _GenericType1):
|
|
240
240
|
"""
|
|
241
241
|
|
|
242
242
|
:param key:
|
|
243
|
-
:type key: BMLayerItem
|
|
243
|
+
:type key: BMLayerItem[_GenericType1]
|
|
244
244
|
:param value:
|
|
245
|
-
:type value:
|
|
245
|
+
:type value: _GenericType1
|
|
246
246
|
"""
|
|
247
247
|
|
|
248
|
-
def __delitem__(self, key: BMLayerItem):
|
|
248
|
+
def __delitem__(self, key: BMLayerItem[_GenericType1]):
|
|
249
249
|
"""
|
|
250
250
|
|
|
251
251
|
:param key:
|
|
252
|
-
:type key: BMLayerItem
|
|
252
|
+
:type key: BMLayerItem[_GenericType1]
|
|
253
253
|
"""
|
|
254
254
|
|
|
255
255
|
class BMEdgeSeq:
|
|
@@ -414,7 +414,7 @@ class BMElemSeq[_GenericType1]:
|
|
|
414
414
|
:rtype: int
|
|
415
415
|
"""
|
|
416
416
|
|
|
417
|
-
class BMFace:
|
|
417
|
+
class BMFace[_GenericType1]:
|
|
418
418
|
"""The BMesh face with 3 or more sides"""
|
|
419
419
|
|
|
420
420
|
edges: BMElemSeq[BMEdge]
|
|
@@ -598,29 +598,29 @@ class BMFace:
|
|
|
598
598
|
:type select: bool
|
|
599
599
|
"""
|
|
600
600
|
|
|
601
|
-
def __getitem__(self, key: BMLayerItem) ->
|
|
601
|
+
def __getitem__(self, key: BMLayerItem[_GenericType1]) -> _GenericType1:
|
|
602
602
|
"""
|
|
603
603
|
|
|
604
604
|
:param key:
|
|
605
|
-
:type key: BMLayerItem
|
|
605
|
+
:type key: BMLayerItem[_GenericType1]
|
|
606
606
|
:return:
|
|
607
|
-
:rtype:
|
|
607
|
+
:rtype: _GenericType1
|
|
608
608
|
"""
|
|
609
609
|
|
|
610
|
-
def __setitem__(self, key: BMLayerItem, value:
|
|
610
|
+
def __setitem__(self, key: BMLayerItem[_GenericType1], value: _GenericType1):
|
|
611
611
|
"""
|
|
612
612
|
|
|
613
613
|
:param key:
|
|
614
|
-
:type key: BMLayerItem
|
|
614
|
+
:type key: BMLayerItem[_GenericType1]
|
|
615
615
|
:param value:
|
|
616
|
-
:type value:
|
|
616
|
+
:type value: _GenericType1
|
|
617
617
|
"""
|
|
618
618
|
|
|
619
|
-
def __delitem__(self, key: BMLayerItem):
|
|
619
|
+
def __delitem__(self, key: BMLayerItem[_GenericType1]):
|
|
620
620
|
"""
|
|
621
621
|
|
|
622
622
|
:param key:
|
|
623
|
-
:type key: BMLayerItem
|
|
623
|
+
:type key: BMLayerItem[_GenericType1]
|
|
624
624
|
"""
|
|
625
625
|
|
|
626
626
|
class BMFaceSeq:
|
|
@@ -735,17 +735,29 @@ class BMIter[_GenericType1]:
|
|
|
735
735
|
class BMLayerAccessEdge:
|
|
736
736
|
"""Exposes custom-data layer attributes."""
|
|
737
737
|
|
|
738
|
-
color:
|
|
739
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
738
|
+
color: BMLayerCollection[mathutils.Vector]
|
|
739
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
740
|
+
|
|
741
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
742
|
+
"""
|
|
743
|
+
|
|
744
|
+
float: BMLayerCollection[float]
|
|
745
|
+
""" Generic float custom-data layer.
|
|
746
|
+
|
|
747
|
+
:type: BMLayerCollection[float]
|
|
748
|
+
"""
|
|
740
749
|
|
|
741
|
-
|
|
742
|
-
""" Generic float custom-data layer.
|
|
750
|
+
float_color: BMLayerCollection[mathutils.Vector]
|
|
751
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
743
752
|
|
|
744
|
-
|
|
745
|
-
"""
|
|
753
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
754
|
+
"""
|
|
746
755
|
|
|
747
|
-
float_vector:
|
|
748
|
-
""" Generic 3D vector with float precision custom-data layer.
|
|
756
|
+
float_vector: BMLayerCollection[mathutils.Vector]
|
|
757
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
758
|
+
|
|
759
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
760
|
+
"""
|
|
749
761
|
|
|
750
762
|
freestyle: BMLayerCollection
|
|
751
763
|
""" Accessor for Freestyle edge layer.
|
|
@@ -753,26 +765,44 @@ class BMLayerAccessEdge:
|
|
|
753
765
|
:type: BMLayerCollection
|
|
754
766
|
"""
|
|
755
767
|
|
|
756
|
-
int:
|
|
757
|
-
""" Generic int custom-data layer.
|
|
768
|
+
int: BMLayerCollection[int]
|
|
769
|
+
""" Generic int custom-data layer.
|
|
770
|
+
|
|
771
|
+
:type: BMLayerCollection[int]
|
|
772
|
+
"""
|
|
758
773
|
|
|
759
|
-
string:
|
|
760
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
774
|
+
string: BMLayerCollection[bytes]
|
|
775
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
776
|
+
|
|
777
|
+
:type: BMLayerCollection[bytes]
|
|
778
|
+
"""
|
|
761
779
|
|
|
762
780
|
class BMLayerAccessFace:
|
|
763
781
|
"""Exposes custom-data layer attributes."""
|
|
764
782
|
|
|
765
|
-
color:
|
|
766
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
783
|
+
color: BMLayerCollection[mathutils.Vector]
|
|
784
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
785
|
+
|
|
786
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
787
|
+
"""
|
|
788
|
+
|
|
789
|
+
float: BMLayerCollection[float]
|
|
790
|
+
""" Generic float custom-data layer.
|
|
791
|
+
|
|
792
|
+
:type: BMLayerCollection[float]
|
|
793
|
+
"""
|
|
767
794
|
|
|
768
|
-
|
|
769
|
-
""" Generic float custom-data layer.
|
|
795
|
+
float_color: BMLayerCollection[mathutils.Vector]
|
|
796
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
770
797
|
|
|
771
|
-
|
|
772
|
-
"""
|
|
798
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
799
|
+
"""
|
|
800
|
+
|
|
801
|
+
float_vector: BMLayerCollection[mathutils.Vector]
|
|
802
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
773
803
|
|
|
774
|
-
|
|
775
|
-
"""
|
|
804
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
805
|
+
"""
|
|
776
806
|
|
|
777
807
|
freestyle: BMLayerCollection
|
|
778
808
|
""" Accessor for Freestyle face layer.
|
|
@@ -780,73 +810,124 @@ class BMLayerAccessFace:
|
|
|
780
810
|
:type: BMLayerCollection
|
|
781
811
|
"""
|
|
782
812
|
|
|
783
|
-
int:
|
|
784
|
-
""" Generic int custom-data layer.
|
|
813
|
+
int: BMLayerCollection[int]
|
|
814
|
+
""" Generic int custom-data layer.
|
|
785
815
|
|
|
786
|
-
|
|
787
|
-
"""
|
|
816
|
+
:type: BMLayerCollection[int]
|
|
817
|
+
"""
|
|
818
|
+
|
|
819
|
+
string: BMLayerCollection[bytes]
|
|
820
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
821
|
+
|
|
822
|
+
:type: BMLayerCollection[bytes]
|
|
823
|
+
"""
|
|
788
824
|
|
|
789
825
|
class BMLayerAccessLoop:
|
|
790
826
|
"""Exposes custom-data layer attributes."""
|
|
791
827
|
|
|
792
|
-
color:
|
|
793
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
828
|
+
color: BMLayerCollection[mathutils.Vector]
|
|
829
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
794
830
|
|
|
795
|
-
|
|
796
|
-
"""
|
|
831
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
832
|
+
"""
|
|
797
833
|
|
|
798
|
-
|
|
799
|
-
""" Generic
|
|
834
|
+
float: BMLayerCollection[float]
|
|
835
|
+
""" Generic float custom-data layer.
|
|
800
836
|
|
|
801
|
-
|
|
802
|
-
"""
|
|
837
|
+
:type: BMLayerCollection[float]
|
|
838
|
+
"""
|
|
803
839
|
|
|
804
|
-
|
|
805
|
-
""" Generic
|
|
840
|
+
float_color: BMLayerCollection[mathutils.Vector]
|
|
841
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
806
842
|
|
|
807
|
-
|
|
808
|
-
"""
|
|
843
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
844
|
+
"""
|
|
809
845
|
|
|
810
|
-
|
|
811
|
-
"""
|
|
846
|
+
float_vector: BMLayerCollection[mathutils.Vector]
|
|
847
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
848
|
+
|
|
849
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
850
|
+
"""
|
|
851
|
+
|
|
852
|
+
int: BMLayerCollection[int]
|
|
853
|
+
""" Generic int custom-data layer.
|
|
854
|
+
|
|
855
|
+
:type: BMLayerCollection[int]
|
|
856
|
+
"""
|
|
857
|
+
|
|
858
|
+
string: BMLayerCollection[bytes]
|
|
859
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
860
|
+
|
|
861
|
+
:type: BMLayerCollection[bytes]
|
|
862
|
+
"""
|
|
863
|
+
|
|
864
|
+
uv: BMLayerCollection[BMLoopUV]
|
|
865
|
+
""" Accessor for `BMLoopUV` UV (as a 2D Vector).
|
|
866
|
+
|
|
867
|
+
:type: BMLayerCollection[BMLoopUV]
|
|
868
|
+
"""
|
|
812
869
|
|
|
813
870
|
class BMLayerAccessVert:
|
|
814
871
|
"""Exposes custom-data layer attributes."""
|
|
815
872
|
|
|
816
|
-
color:
|
|
817
|
-
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
873
|
+
color: BMLayerCollection[mathutils.Vector]
|
|
874
|
+
""" Generic RGBA color with 8-bit precision custom-data layer.
|
|
818
875
|
|
|
819
|
-
|
|
820
|
-
"""
|
|
876
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
877
|
+
"""
|
|
821
878
|
|
|
822
|
-
|
|
823
|
-
"""
|
|
879
|
+
deform: BMLayerCollection[BMDeformVert]
|
|
880
|
+
""" Vertex deform weight `BMDeformVert` (TODO).
|
|
824
881
|
|
|
825
|
-
|
|
826
|
-
"""
|
|
882
|
+
:type: BMLayerCollection[BMDeformVert]
|
|
883
|
+
"""
|
|
827
884
|
|
|
828
|
-
|
|
829
|
-
""" Generic
|
|
885
|
+
float: BMLayerCollection[float]
|
|
886
|
+
""" Generic float custom-data layer.
|
|
830
887
|
|
|
831
|
-
|
|
832
|
-
"""
|
|
888
|
+
:type: BMLayerCollection[float]
|
|
889
|
+
"""
|
|
890
|
+
|
|
891
|
+
float_color: BMLayerCollection[mathutils.Vector]
|
|
892
|
+
""" Generic RGBA color with float precision custom-data layer.
|
|
833
893
|
|
|
834
|
-
|
|
835
|
-
"""
|
|
894
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
895
|
+
"""
|
|
896
|
+
|
|
897
|
+
float_vector: BMLayerCollection[mathutils.Vector]
|
|
898
|
+
""" Generic 3D vector with float precision custom-data layer.
|
|
899
|
+
|
|
900
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
901
|
+
"""
|
|
902
|
+
|
|
903
|
+
int: BMLayerCollection[int]
|
|
904
|
+
""" Generic int custom-data layer.
|
|
905
|
+
|
|
906
|
+
:type: BMLayerCollection[int]
|
|
907
|
+
"""
|
|
908
|
+
|
|
909
|
+
shape: BMLayerCollection[mathutils.Vector]
|
|
910
|
+
""" Vertex shapekey absolute location (as a 3D Vector).
|
|
911
|
+
|
|
912
|
+
:type: BMLayerCollection[mathutils.Vector]
|
|
913
|
+
"""
|
|
836
914
|
|
|
837
915
|
skin: typing.Any
|
|
838
916
|
""" Accessor for skin layer."""
|
|
839
917
|
|
|
840
|
-
string:
|
|
841
|
-
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
918
|
+
string: BMLayerCollection[bytes]
|
|
919
|
+
""" Generic string custom-data layer (exposed as bytes, 255 max length).
|
|
920
|
+
|
|
921
|
+
:type: BMLayerCollection[bytes]
|
|
922
|
+
"""
|
|
842
923
|
|
|
843
|
-
class BMLayerCollection[
|
|
924
|
+
class BMLayerCollection[_GenericType1]:
|
|
844
925
|
"""Gives access to a collection of custom-data layers of the same type and behaves like Python dictionaries, except for the ability to do list like index access."""
|
|
845
926
|
|
|
846
|
-
active: BMLayerItem
|
|
847
|
-
"""
|
|
927
|
+
active: BMLayerItem[_GenericType1]
|
|
928
|
+
"""
|
|
848
929
|
|
|
849
|
-
:type: BMLayerItem
|
|
930
|
+
:type: BMLayerItem[_GenericType1]
|
|
850
931
|
"""
|
|
851
932
|
|
|
852
933
|
is_singleton: bool
|
|
@@ -857,7 +938,7 @@ class BMLayerCollection[_GenericType2]:
|
|
|
857
938
|
|
|
858
939
|
def get[_GenericType2](
|
|
859
940
|
self, key: str, default: _GenericType2 = None
|
|
860
|
-
) -> BMLayerItem | _GenericType2:
|
|
941
|
+
) -> BMLayerItem[_GenericType1] | _GenericType2:
|
|
861
942
|
"""Returns the value of the layer matching the key or default
|
|
862
943
|
when not found (matches Python's dictionary function of the same name).
|
|
863
944
|
|
|
@@ -867,14 +948,15 @@ class BMLayerCollection[_GenericType2]:
|
|
|
867
948
|
key is not found.
|
|
868
949
|
:type default: _GenericType2
|
|
869
950
|
:return:
|
|
870
|
-
:rtype: BMLayerItem | _GenericType2
|
|
951
|
+
:rtype: BMLayerItem[_GenericType1] | _GenericType2
|
|
871
952
|
"""
|
|
872
953
|
|
|
873
|
-
def items(self):
|
|
954
|
+
def items(self) -> list[str, BMLayerItem[_GenericType1]]:
|
|
874
955
|
"""Return the identifiers of collection members
|
|
875
956
|
(matching Python's dict.items() functionality).
|
|
876
957
|
|
|
877
958
|
:return: (key, value) pairs for each member of this collection.
|
|
959
|
+
:rtype: list[str, BMLayerItem[_GenericType1]]
|
|
878
960
|
"""
|
|
879
961
|
|
|
880
962
|
def keys(self) -> list[str]:
|
|
@@ -885,38 +967,38 @@ class BMLayerCollection[_GenericType2]:
|
|
|
885
967
|
:rtype: list[str]
|
|
886
968
|
"""
|
|
887
969
|
|
|
888
|
-
def new(self, name: str | None = "") -> BMLayerItem:
|
|
970
|
+
def new(self, name: str | None = "") -> BMLayerItem[_GenericType1]:
|
|
889
971
|
"""Create a new layer
|
|
890
972
|
|
|
891
973
|
:param name: Optional name argument (will be made unique).
|
|
892
974
|
:type name: str | None
|
|
893
975
|
:return: The newly created layer.
|
|
894
|
-
:rtype: BMLayerItem
|
|
976
|
+
:rtype: BMLayerItem[_GenericType1]
|
|
895
977
|
"""
|
|
896
978
|
|
|
897
|
-
def remove(self, layer: BMLayerItem):
|
|
979
|
+
def remove(self, layer: BMLayerItem[_GenericType1]):
|
|
898
980
|
"""Remove a layer
|
|
899
981
|
|
|
900
982
|
:param layer: The layer to remove.
|
|
901
|
-
:type layer: BMLayerItem
|
|
983
|
+
:type layer: BMLayerItem[_GenericType1]
|
|
902
984
|
"""
|
|
903
985
|
|
|
904
|
-
def values(self) -> list:
|
|
986
|
+
def values(self) -> list[BMLayerItem[_GenericType1]]:
|
|
905
987
|
"""Return the values of collection
|
|
906
988
|
(matching Python's dict.values() functionality).
|
|
907
989
|
|
|
908
990
|
:return: the members of this collection.
|
|
909
|
-
:rtype: list
|
|
991
|
+
:rtype: list[BMLayerItem[_GenericType1]]
|
|
910
992
|
"""
|
|
911
993
|
|
|
912
|
-
def verify(self) -> BMLayerItem:
|
|
994
|
+
def verify(self) -> BMLayerItem[_GenericType1]:
|
|
913
995
|
"""Create a new layer or return an existing active layer
|
|
914
996
|
|
|
915
997
|
:return: The newly verified layer.
|
|
916
|
-
:rtype: BMLayerItem
|
|
998
|
+
:rtype: BMLayerItem[_GenericType1]
|
|
917
999
|
"""
|
|
918
1000
|
|
|
919
|
-
class BMLayerItem:
|
|
1001
|
+
class BMLayerItem[_GenericType1]:
|
|
920
1002
|
"""Exposes a single custom data layer, their main purpose is for use as item accessors to custom-data when used with vert/edge/face/loop data."""
|
|
921
1003
|
|
|
922
1004
|
name: str
|
|
@@ -932,7 +1014,7 @@ class BMLayerItem:
|
|
|
932
1014
|
:type other: typing_extensions.Self
|
|
933
1015
|
"""
|
|
934
1016
|
|
|
935
|
-
class BMLoop:
|
|
1017
|
+
class BMLoop[_GenericType1]:
|
|
936
1018
|
"""This is normally accessed from `BMFace.loops` where each face loop represents a corner of the face."""
|
|
937
1019
|
|
|
938
1020
|
edge: BMEdge
|
|
@@ -1051,29 +1133,29 @@ class BMLoop:
|
|
|
1051
1133
|
:type multires: bool
|
|
1052
1134
|
"""
|
|
1053
1135
|
|
|
1054
|
-
def __getitem__(self, key: BMLayerItem) ->
|
|
1136
|
+
def __getitem__(self, key: BMLayerItem[_GenericType1]) -> _GenericType1:
|
|
1055
1137
|
"""
|
|
1056
1138
|
|
|
1057
1139
|
:param key:
|
|
1058
|
-
:type key: BMLayerItem
|
|
1140
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1059
1141
|
:return:
|
|
1060
|
-
:rtype:
|
|
1142
|
+
:rtype: _GenericType1
|
|
1061
1143
|
"""
|
|
1062
1144
|
|
|
1063
|
-
def __setitem__(self, key: BMLayerItem, value:
|
|
1145
|
+
def __setitem__(self, key: BMLayerItem[_GenericType1], value: _GenericType1):
|
|
1064
1146
|
"""
|
|
1065
1147
|
|
|
1066
1148
|
:param key:
|
|
1067
|
-
:type key: BMLayerItem
|
|
1149
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1068
1150
|
:param value:
|
|
1069
|
-
:type value:
|
|
1151
|
+
:type value: _GenericType1
|
|
1070
1152
|
"""
|
|
1071
1153
|
|
|
1072
|
-
def __delitem__(self, key: BMLayerItem):
|
|
1154
|
+
def __delitem__(self, key: BMLayerItem[_GenericType1]):
|
|
1073
1155
|
"""
|
|
1074
1156
|
|
|
1075
1157
|
:param key:
|
|
1076
|
-
:type key: BMLayerItem
|
|
1158
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1077
1159
|
"""
|
|
1078
1160
|
|
|
1079
1161
|
class BMLoopSeq:
|
|
@@ -1108,7 +1190,7 @@ class BMLoopUV:
|
|
|
1108
1190
|
:type: mathutils.Vector
|
|
1109
1191
|
"""
|
|
1110
1192
|
|
|
1111
|
-
class BMVert:
|
|
1193
|
+
class BMVert[_GenericType1]:
|
|
1112
1194
|
"""The BMesh vertex type"""
|
|
1113
1195
|
|
|
1114
1196
|
co: mathutils.Vector
|
|
@@ -1253,29 +1335,29 @@ class BMVert:
|
|
|
1253
1335
|
:type select: bool
|
|
1254
1336
|
"""
|
|
1255
1337
|
|
|
1256
|
-
def __getitem__(self, key: BMLayerItem) ->
|
|
1338
|
+
def __getitem__(self, key: BMLayerItem[_GenericType1]) -> _GenericType1:
|
|
1257
1339
|
"""
|
|
1258
1340
|
|
|
1259
1341
|
:param key:
|
|
1260
|
-
:type key: BMLayerItem
|
|
1342
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1261
1343
|
:return:
|
|
1262
|
-
:rtype:
|
|
1344
|
+
:rtype: _GenericType1
|
|
1263
1345
|
"""
|
|
1264
1346
|
|
|
1265
|
-
def __setitem__(self, key: BMLayerItem, value:
|
|
1347
|
+
def __setitem__(self, key: BMLayerItem[_GenericType1], value: _GenericType1):
|
|
1266
1348
|
"""
|
|
1267
1349
|
|
|
1268
1350
|
:param key:
|
|
1269
|
-
:type key: BMLayerItem
|
|
1351
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1270
1352
|
:param value:
|
|
1271
|
-
:type value:
|
|
1353
|
+
:type value: _GenericType1
|
|
1272
1354
|
"""
|
|
1273
1355
|
|
|
1274
|
-
def __delitem__(self, key: BMLayerItem):
|
|
1356
|
+
def __delitem__(self, key: BMLayerItem[_GenericType1]):
|
|
1275
1357
|
"""
|
|
1276
1358
|
|
|
1277
1359
|
:param key:
|
|
1278
|
-
:type key: BMLayerItem
|
|
1360
|
+
:type key: BMLayerItem[_GenericType1]
|
|
1279
1361
|
"""
|
|
1280
1362
|
|
|
1281
1363
|
class BMVertSeq:
|
bpy/ops/mesh/__init__.pyi
CHANGED
|
@@ -378,11 +378,13 @@ def convex_hull(
|
|
|
378
378
|
join_triangles: bool | None = True,
|
|
379
379
|
face_threshold: float | None = 0.698132,
|
|
380
380
|
shape_threshold: float | None = 0.698132,
|
|
381
|
+
topology_influence: float | None = 0.0,
|
|
381
382
|
uvs: bool | None = False,
|
|
382
383
|
vcols: bool | None = False,
|
|
383
384
|
seam: bool | None = False,
|
|
384
385
|
sharp: bool | None = False,
|
|
385
386
|
materials: bool | None = False,
|
|
387
|
+
deselect_joined: bool | None = False,
|
|
386
388
|
):
|
|
387
389
|
"""Enclose selected vertices in a convex polyhedron
|
|
388
390
|
|
|
@@ -401,6 +403,8 @@ def convex_hull(
|
|
|
401
403
|
:type face_threshold: float | None
|
|
402
404
|
:param shape_threshold: Max Shape Angle, Shape angle limit
|
|
403
405
|
:type shape_threshold: float | None
|
|
406
|
+
:param topology_influence: Topology Influence, How much to prioritize regular grids of quads as well as quads that touch existing quads
|
|
407
|
+
:type topology_influence: float | None
|
|
404
408
|
:param uvs: Compare UVs
|
|
405
409
|
:type uvs: bool | None
|
|
406
410
|
:param vcols: Compare Color Attributes
|
|
@@ -411,6 +415,8 @@ def convex_hull(
|
|
|
411
415
|
:type sharp: bool | None
|
|
412
416
|
:param materials: Compare Materials
|
|
413
417
|
:type materials: bool | None
|
|
418
|
+
:param deselect_joined: Deselect Joined, Only select remaining triangles that were not merged
|
|
419
|
+
:type deselect_joined: bool | None
|
|
414
420
|
"""
|
|
415
421
|
|
|
416
422
|
def customdata_custom_splitnormals_add(
|
|
@@ -3868,11 +3874,13 @@ def tris_convert_to_quads(
|
|
|
3868
3874
|
*,
|
|
3869
3875
|
face_threshold: float | None = 0.698132,
|
|
3870
3876
|
shape_threshold: float | None = 0.698132,
|
|
3877
|
+
topology_influence: float | None = 0.0,
|
|
3871
3878
|
uvs: bool | None = False,
|
|
3872
3879
|
vcols: bool | None = False,
|
|
3873
3880
|
seam: bool | None = False,
|
|
3874
3881
|
sharp: bool | None = False,
|
|
3875
3882
|
materials: bool | None = False,
|
|
3883
|
+
deselect_joined: bool | None = False,
|
|
3876
3884
|
):
|
|
3877
3885
|
"""Join triangles into quads
|
|
3878
3886
|
|
|
@@ -3883,6 +3891,8 @@ def tris_convert_to_quads(
|
|
|
3883
3891
|
:type face_threshold: float | None
|
|
3884
3892
|
:param shape_threshold: Max Shape Angle, Shape angle limit
|
|
3885
3893
|
:type shape_threshold: float | None
|
|
3894
|
+
:param topology_influence: Topology Influence, How much to prioritize regular grids of quads as well as quads that touch existing quads
|
|
3895
|
+
:type topology_influence: float | None
|
|
3886
3896
|
:param uvs: Compare UVs
|
|
3887
3897
|
:type uvs: bool | None
|
|
3888
3898
|
:param vcols: Compare Color Attributes
|
|
@@ -3893,6 +3903,8 @@ def tris_convert_to_quads(
|
|
|
3893
3903
|
:type sharp: bool | None
|
|
3894
3904
|
:param materials: Compare Materials
|
|
3895
3905
|
:type materials: bool | None
|
|
3906
|
+
:param deselect_joined: Deselect Joined, Only select remaining triangles that were not merged
|
|
3907
|
+
:type deselect_joined: bool | None
|
|
3896
3908
|
"""
|
|
3897
3909
|
|
|
3898
3910
|
def unsubdivide(
|
bpy/ops/sequencer/__init__.pyi
CHANGED
|
@@ -1205,7 +1205,7 @@ def rebuild_proxy(
|
|
|
1205
1205
|
execution_context: int | str | None = None,
|
|
1206
1206
|
undo: bool | None = None,
|
|
1207
1207
|
):
|
|
1208
|
-
"""Rebuild all selected proxies and timecode indices
|
|
1208
|
+
"""Rebuild all selected proxies and timecode indices
|
|
1209
1209
|
|
|
1210
1210
|
:type override_context: bpy.types.Context | dict[str, typing.Any] | None
|
|
1211
1211
|
:type execution_context: int | str | None
|
bpy/ops/wm/__init__.pyi
CHANGED
|
@@ -3633,7 +3633,48 @@ def properties_edit(
|
|
|
3633
3633
|
step_float: float | None = 0.1,
|
|
3634
3634
|
subtype: str | None = "",
|
|
3635
3635
|
default_string: str = "",
|
|
3636
|
-
id_type: typing.Literal[
|
|
3636
|
+
id_type: typing.Literal[
|
|
3637
|
+
"ACTION",
|
|
3638
|
+
"ARMATURE",
|
|
3639
|
+
"BRUSH",
|
|
3640
|
+
"CACHEFILE",
|
|
3641
|
+
"CAMERA",
|
|
3642
|
+
"COLLECTION",
|
|
3643
|
+
"CURVE",
|
|
3644
|
+
"CURVES",
|
|
3645
|
+
"FONT",
|
|
3646
|
+
"GREASEPENCIL",
|
|
3647
|
+
"GREASEPENCIL_V3",
|
|
3648
|
+
"IMAGE",
|
|
3649
|
+
"KEY",
|
|
3650
|
+
"LATTICE",
|
|
3651
|
+
"LIBRARY",
|
|
3652
|
+
"LIGHT",
|
|
3653
|
+
"LIGHT_PROBE",
|
|
3654
|
+
"LINESTYLE",
|
|
3655
|
+
"MASK",
|
|
3656
|
+
"MATERIAL",
|
|
3657
|
+
"MESH",
|
|
3658
|
+
"META",
|
|
3659
|
+
"MOVIECLIP",
|
|
3660
|
+
"NODETREE",
|
|
3661
|
+
"OBJECT",
|
|
3662
|
+
"PAINTCURVE",
|
|
3663
|
+
"PALETTE",
|
|
3664
|
+
"PARTICLE",
|
|
3665
|
+
"POINTCLOUD",
|
|
3666
|
+
"SCENE",
|
|
3667
|
+
"SCREEN",
|
|
3668
|
+
"SOUND",
|
|
3669
|
+
"SPEAKER",
|
|
3670
|
+
"TEXT",
|
|
3671
|
+
"TEXTURE",
|
|
3672
|
+
"VOLUME",
|
|
3673
|
+
"WINDOWMANAGER",
|
|
3674
|
+
"WORKSPACE",
|
|
3675
|
+
"WORLD",
|
|
3676
|
+
]
|
|
3677
|
+
| None = "OBJECT",
|
|
3637
3678
|
eval_string: str = "",
|
|
3638
3679
|
):
|
|
3639
3680
|
"""Change a custom property's type, or adjust how it is displayed in the interface
|
|
@@ -3715,7 +3756,7 @@ def properties_edit(
|
|
|
3715
3756
|
:param default_string: Default Value
|
|
3716
3757
|
:type default_string: str
|
|
3717
3758
|
:param id_type: ID Type
|
|
3718
|
-
:type id_type: typing.Literal['OBJECT'] | None
|
|
3759
|
+
:type id_type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD'] | None
|
|
3719
3760
|
:param eval_string: Value, Python value for unsupported custom property types
|
|
3720
3761
|
:type eval_string: str
|
|
3721
3762
|
"""
|
bpy/types/__init__.pyi
CHANGED
|
@@ -112540,10 +112540,51 @@ class Action(ID, bpy_struct):
|
|
|
112540
112540
|
:type: ActionGroups
|
|
112541
112541
|
"""
|
|
112542
112542
|
|
|
112543
|
-
id_root: typing.Literal[
|
|
112543
|
+
id_root: typing.Literal[
|
|
112544
|
+
"ACTION",
|
|
112545
|
+
"ARMATURE",
|
|
112546
|
+
"BRUSH",
|
|
112547
|
+
"CACHEFILE",
|
|
112548
|
+
"CAMERA",
|
|
112549
|
+
"COLLECTION",
|
|
112550
|
+
"CURVE",
|
|
112551
|
+
"CURVES",
|
|
112552
|
+
"FONT",
|
|
112553
|
+
"GREASEPENCIL",
|
|
112554
|
+
"GREASEPENCIL_V3",
|
|
112555
|
+
"IMAGE",
|
|
112556
|
+
"KEY",
|
|
112557
|
+
"LATTICE",
|
|
112558
|
+
"LIBRARY",
|
|
112559
|
+
"LIGHT",
|
|
112560
|
+
"LIGHT_PROBE",
|
|
112561
|
+
"LINESTYLE",
|
|
112562
|
+
"MASK",
|
|
112563
|
+
"MATERIAL",
|
|
112564
|
+
"MESH",
|
|
112565
|
+
"META",
|
|
112566
|
+
"MOVIECLIP",
|
|
112567
|
+
"NODETREE",
|
|
112568
|
+
"OBJECT",
|
|
112569
|
+
"PAINTCURVE",
|
|
112570
|
+
"PALETTE",
|
|
112571
|
+
"PARTICLE",
|
|
112572
|
+
"POINTCLOUD",
|
|
112573
|
+
"SCENE",
|
|
112574
|
+
"SCREEN",
|
|
112575
|
+
"SOUND",
|
|
112576
|
+
"SPEAKER",
|
|
112577
|
+
"TEXT",
|
|
112578
|
+
"TEXTURE",
|
|
112579
|
+
"VOLUME",
|
|
112580
|
+
"WINDOWMANAGER",
|
|
112581
|
+
"WORKSPACE",
|
|
112582
|
+
"WORLD",
|
|
112583
|
+
"UNSPECIFIED",
|
|
112584
|
+
]
|
|
112544
112585
|
""" Type of ID block that action can be used on - DO NOT CHANGE UNLESS YOU KNOW WHAT YOU ARE DOING
|
|
112545
112586
|
|
|
112546
|
-
:type: typing.Literal['OBJECT']
|
|
112587
|
+
:type: typing.Literal['ACTION','ARMATURE','BRUSH','CACHEFILE','CAMERA','COLLECTION','CURVE','CURVES','FONT','GREASEPENCIL','GREASEPENCIL_V3','IMAGE','KEY','LATTICE','LIBRARY','LIGHT','LIGHT_PROBE','LINESTYLE','MASK','MATERIAL','MESH','META','MOVIECLIP','NODETREE','OBJECT','PAINTCURVE','PALETTE','PARTICLE','POINTCLOUD','SCENE','SCREEN','SOUND','SPEAKER','TEXT','TEXTURE','VOLUME','WINDOWMANAGER','WORKSPACE','WORLD','UNSPECIFIED']
|
|
112547
112588
|
"""
|
|
112548
112589
|
|
|
112549
112590
|
is_action_layered: bool
|
|
@@ -117674,6 +117715,12 @@ class Brush(ID, bpy_struct):
|
|
|
117674
117715
|
:type: float
|
|
117675
117716
|
"""
|
|
117676
117717
|
|
|
117718
|
+
has_unsaved_changes: bool
|
|
117719
|
+
""" Indicates that there are any user visible changes since the brush has been imported or read from the file
|
|
117720
|
+
|
|
117721
|
+
:type: bool
|
|
117722
|
+
"""
|
|
117723
|
+
|
|
117677
117724
|
height: float
|
|
117678
117725
|
""" Affectable height of brush (i.e. the layer height for the layer tool)
|
|
117679
117726
|
|
|
@@ -228216,14 +228263,14 @@ class Window(bpy_struct):
|
|
|
228216
228263
|
"""
|
|
228217
228264
|
|
|
228218
228265
|
def cursor_modal_set(self, cursor: bpy.typing.WindowCursorItems | None):
|
|
228219
|
-
"""
|
|
228266
|
+
"""Set the cursor, so the previous cursor can be restored
|
|
228220
228267
|
|
|
228221
228268
|
:param cursor: cursor
|
|
228222
228269
|
:type cursor: bpy.typing.WindowCursorItems | None
|
|
228223
228270
|
"""
|
|
228224
228271
|
|
|
228225
228272
|
def cursor_modal_restore(self):
|
|
228226
|
-
"""
|
|
228273
|
+
"""Restore the previous cursor after calling cursor_modal_set"""
|
|
228227
228274
|
|
|
228228
228275
|
def event_simulate(
|
|
228229
228276
|
self,
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: fake-bpy-module
|
|
3
|
-
Version:
|
|
3
|
+
Version: 20241012
|
|
4
4
|
Summary: Collection of the fake Blender Python API module for the code completion.
|
|
5
5
|
Author: nutti
|
|
6
6
|
Author-email: nutti.metro@gmail.com
|
|
@@ -21,7 +21,7 @@ Classifier: Topic :: Text Editors :: Integrated Development Environments (IDE)
|
|
|
21
21
|
Classifier: Programming Language :: Python
|
|
22
22
|
Classifier: Programming Language :: Python :: 3
|
|
23
23
|
Classifier: License :: OSI Approved :: MIT License
|
|
24
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.12
|
|
25
25
|
Description-Content-Type: text/markdown
|
|
26
26
|
|
|
27
27
|
# Fake Blender Python API module collection: fake-bpy-module
|
|
@@ -43,8 +43,7 @@ Note: The similar project for Blender Game Engine (BGE) is available on
|
|
|
43
43
|
|
|
44
44
|
## Requirements
|
|
45
45
|
|
|
46
|
-
fake-bpy-module
|
|
47
|
-
Python 3.8. Check your Python version is >= 3.8.
|
|
46
|
+
fake-bpy-module requires Python 3.12.
|
|
48
47
|
|
|
49
48
|
## Install
|
|
50
49
|
|
|
@@ -135,7 +135,7 @@ bl_ui/properties_material/__init__.pyi,sha256=J3GrRdWFeh4p5w2qKtC5Dwz0XF301ATcsC
|
|
|
135
135
|
bl_ui/properties_material_gpencil/__init__.pyi,sha256=zfCV8bG4-NABgQNpZjhRRR4Ttr0qS2H17seuJlJgX4c,8621
|
|
136
136
|
bl_ui/properties_object/__init__.pyi,sha256=8j-f7nIklQcDr8gIfbaHQzZBbfT9DpTDy3g02ZEWtbI,14680
|
|
137
137
|
bl_ui/properties_output/__init__.pyi,sha256=1fkDdDyAz2lTcSUnef8fai-1hTw9ztgvJsafPT_8vcU,13760
|
|
138
|
-
bl_ui/properties_paint_common/__init__.pyi,sha256=
|
|
138
|
+
bl_ui/properties_paint_common/__init__.pyi,sha256=INYsmz0kr7GuYAv9v8p-b6taRlrd782PhlFh3zXtE38,7982
|
|
139
139
|
bl_ui/properties_particle/__init__.pyi,sha256=HVO0ZWeKHj7ZNP4Bh8ji6IunnLDTpPDNRVZg6TQ8wOU,43414
|
|
140
140
|
bl_ui/properties_physics_cloth/__init__.pyi,sha256=z4BUwpMH-UQsZv7OfyPU_HHwCGeL-rcpMyY02M-Ew2Q,10647
|
|
141
141
|
bl_ui/properties_physics_common/__init__.pyi,sha256=2lJ-nAiO5aVycUimdzvPYJAfVyvsnBdaE9nQ9UN2W4w,1338
|
|
@@ -185,8 +185,8 @@ blf/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
|
185
185
|
bmesh/__init__.pyi,sha256=6QP0wBMiFIY5MtM1Yuw4Qj2ZPtEZHFUdAf1ay4z-SQE,1500
|
|
186
186
|
bmesh/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
187
187
|
bmesh/geometry/__init__.pyi,sha256=fgGEevkhB2IEtja2X5rm6OQU5EoDfkPaqiKeNGfWZ6c,656
|
|
188
|
-
bmesh/ops/__init__.pyi,sha256=
|
|
189
|
-
bmesh/types/__init__.pyi,sha256=
|
|
188
|
+
bmesh/ops/__init__.pyi,sha256=7W-Tv_SgkgEMa90SsRfRzBzNG2Wt1EU622YpkDYJthc,74701
|
|
189
|
+
bmesh/types/__init__.pyi,sha256=1I3_bY2f1fn141wVh1tNU9n6rUwTkCeC6uvEGU-SpNw,41596
|
|
190
190
|
bmesh/utils/__init__.pyi,sha256=NNWqLeAWiafZZa8o7QayCBvpJDkDHTspRk7ZHws83MY,6009
|
|
191
191
|
bpy/__init__.pyi,sha256=dozab_KhjTikiJAE59kzHS9tbX9OJc8U1vPdj6gNFJY,502
|
|
192
192
|
bpy/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
@@ -237,7 +237,7 @@ bpy/ops/marker/__init__.pyi,sha256=Ny5T3pex5r11KmT8SfmDdJ2tUlRX7FZGrU9fVTCA6CQ,7
|
|
|
237
237
|
bpy/ops/mask/__init__.pyi,sha256=-Lj0kCugHLV9nnGd0Ah5rXWdURQAI9fv6PBI73ucJvE,23199
|
|
238
238
|
bpy/ops/material/__init__.pyi,sha256=KDgPB2utYKt3DSXKI4f71x1A4Di-_AdWpAbNah3N3AE,1187
|
|
239
239
|
bpy/ops/mball/__init__.pyi,sha256=jqOLev5gvBK4fx9CLXj1qxWyTp3z0kqVG1Fxk4Mnzn8,5384
|
|
240
|
-
bpy/ops/mesh/__init__.pyi,sha256=
|
|
240
|
+
bpy/ops/mesh/__init__.pyi,sha256=a_x0zfWW8LcwXgWU2yFYE4DXlW3N5XeMrXscL73LOT4,157018
|
|
241
241
|
bpy/ops/nla/__init__.pyi,sha256=uhpT_iNKbnI3zN0dI3_w4ZuEeBSGy_2Z4eUsTTj3z48,24221
|
|
242
242
|
bpy/ops/node/__init__.pyi,sha256=3P5RJJLhHtwason9eKv2W9UAU16jKsiipNFstrmKNDQ,69731
|
|
243
243
|
bpy/ops/object/__init__.pyi,sha256=FX1sG0IIC5soGl07JkQTKUxuGJ0HHTgtX4R67zXGojc,203427
|
|
@@ -257,7 +257,7 @@ bpy/ops/screen/__init__.pyi,sha256=brjCQalre8Km7BxXPI6t0j3NBggA1IrsiOwNZ9AmhKc,2
|
|
|
257
257
|
bpy/ops/script/__init__.pyi,sha256=qJGs4LY_-NgCKFwGkOBwvig0LFr5v72A9nL-LQ21HrY,1460
|
|
258
258
|
bpy/ops/sculpt/__init__.pyi,sha256=s4QH5ISS9KMBMQ7vCjHP1U7GbC_Pu-pyvNeqB5OftC0,52345
|
|
259
259
|
bpy/ops/sculpt_curves/__init__.pyi,sha256=h9WZL7nJe6THcD9vxr7_qxeHb3s9dLuE-GSqd5s8dac,3310
|
|
260
|
-
bpy/ops/sequencer/__init__.pyi,sha256=
|
|
260
|
+
bpy/ops/sequencer/__init__.pyi,sha256=m6kIyyDbiXxHpFjA8VpqwZMDmcUZgfehHIFF625hJpE,86908
|
|
261
261
|
bpy/ops/sound/__init__.pyi,sha256=wxDDo9nBG2YwbAnOKMemcIJvk42mmHatbDkEU5h9Z7c,17938
|
|
262
262
|
bpy/ops/spreadsheet/__init__.pyi,sha256=Nmr0N99wGYPusUlQC4WGJf2E3WETSGDLjnyGZ9yHQUc,2003
|
|
263
263
|
bpy/ops/surface/__init__.pyi,sha256=hWXTtX4irgUJXJzgBqM5aHqV04qpu6h0pN0YMGJKE2c,11250
|
|
@@ -270,12 +270,12 @@ bpy/ops/uilist/__init__.pyi,sha256=L4xQFB8gZEK8eR2tymJBIVwALoVQLh9gwGkIjDzORyI,2
|
|
|
270
270
|
bpy/ops/uv/__init__.pyi,sha256=ociGOFaeH4aChcVFMtC167ZWtM4roFQveDgKiqbAK3c,52706
|
|
271
271
|
bpy/ops/view2d/__init__.pyi,sha256=UWYslz64I_HIULKVyiYd9bVK38ypxss_9EZySgQkyuI,9137
|
|
272
272
|
bpy/ops/view3d/__init__.pyi,sha256=2lr2OOlmYao1DxhG3UugV_WXB8IViYGBL5WXvxHUXOE,41228
|
|
273
|
-
bpy/ops/wm/__init__.pyi,sha256=
|
|
273
|
+
bpy/ops/wm/__init__.pyi,sha256=hj4IbFo4GJ7JPqkRNu0bYgAjBgX1TrVkwmI3U2jAe2s,230860
|
|
274
274
|
bpy/ops/workspace/__init__.pyi,sha256=4qG0-HkVfaGfdBe9QvBCKUox03nb1ZfeV1fz-0b3KJY,3133
|
|
275
275
|
bpy/ops/world/__init__.pyi,sha256=ytaDhwJ-K4SbWylChL1za6lvMNM2-RX1S0BR7892Afg,946
|
|
276
276
|
bpy/path/__init__.pyi,sha256=lXSqQ4p4zukM_-6TaN4v7lNWFVY0xbYGMkOVLpkbpsI,5444
|
|
277
277
|
bpy/props/__init__.pyi,sha256=eVVh1KTFtNf6c-4uSWt4wANzTv1RvN2I2FQ7ewdrKCQ,31045
|
|
278
|
-
bpy/types/__init__.pyi,sha256=
|
|
278
|
+
bpy/types/__init__.pyi,sha256=DcIpds6VYnPoz9MWdCSPg3kw2Aj0qE2mQiTYW7tf7ek,5368259
|
|
279
279
|
bpy/typing/__init__.pyi,sha256=AnkFqDUSSVdRCegyMqXl22WYBClSinMKhi-E7z_N_xs,138523
|
|
280
280
|
bpy/utils/__init__.pyi,sha256=AEb3oVPPh_gqLyKORj6rsxDPWvXIHjqp_eME3z98GcM,13117
|
|
281
281
|
bpy/utils/previews/__init__.pyi,sha256=AsbDN4vRLbSTZ7_S_4LqmI1sJmV_8NnqDt1QfBdH94Y,2280
|
|
@@ -311,7 +311,7 @@ freestyle/functions/__init__.pyi,sha256=sEPnGHwZm8XBlfE7CKLros3CKJlAh1h1FI74nBTE
|
|
|
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=NkyVRi0oSwC1hAVdFnytoMnluE6T2W4tyx73CMwYnRo,99019
|
|
314
|
-
freestyle/utils/__init__.pyi,sha256=
|
|
314
|
+
freestyle/utils/__init__.pyi,sha256=lW5JWrilkFTvRmtYoS3hbmWfj2abo2hHsvp4eyGLbcQ,5108
|
|
315
315
|
freestyle/utils/ContextFunctions/__init__.pyi,sha256=uPNpwsSaqruftJiGu-P0a3YrjEkE4vLigWGh0Lvrtx4,3405
|
|
316
316
|
gpu/__init__.pyi,sha256=vySMnQlOzFH_SMmm7p86InVADL4-y4m5_8wTYtYOLPo,7975
|
|
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-20241012.dist-info/METADATA,sha256=I6ts9Z5REK41zcIzZq7yTI35hxfGsUde2CLUcYQNI2M,7204
|
|
362
|
+
fake_bpy_module-20241012.dist-info/WHEEL,sha256=GV9aMThwP_4oNCtvEC2ec3qUYutgWeAzklro_0m4WJQ,91
|
|
363
|
+
fake_bpy_module-20241012.dist-info/top_level.txt,sha256=SZm3DVRKif7dFSjYKiIIg3_7uqjIwRAwOnCIcT4hRNM,500
|
|
364
|
+
fake_bpy_module-20241012.dist-info/RECORD,,
|
freestyle/utils/__init__.pyi
CHANGED
|
@@ -124,7 +124,7 @@ def material_from_fedge(fe):
|
|
|
124
124
|
"""get the diffuse RGBA color from an FEdge"""
|
|
125
125
|
|
|
126
126
|
def normal_at_I0D(it): ...
|
|
127
|
-
def pairwise(iterable, types={
|
|
127
|
+
def pairwise(iterable, types={Stroke, StrokeVertexIterator}):
|
|
128
128
|
"""Yields a tuple containing the previous and current object"""
|
|
129
129
|
|
|
130
130
|
def rgb_to_bw(r, g, b):
|
|
File without changes
|
|
File without changes
|