fake-bpy-module 20240509__py3-none-any.whl → 20240511__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.
- aud/__init__.pyi +2 -1
- bl_operators/__init__.pyi +1 -0
- bl_operators/world/__init__.pyi +143 -0
- bl_operators/world/py.typed +0 -0
- bl_ui/properties_data_grease_pencil/__init__.pyi +181 -0
- blf/__init__.pyi +3 -2
- bmesh/ops/__init__.pyi +106 -106
- bpy/ops/export_scene/__init__.pyi +3 -3
- bpy/ops/grease_pencil/__init__.pyi +19 -0
- bpy/ops/nla/__init__.pyi +2 -2
- bpy/ops/sculpt/__init__.pyi +2 -2
- bpy/ops/wm/__init__.pyi +3 -3
- bpy/ops/world/__init__.pyi +16 -0
- bpy/props/__init__.pyi +2 -2
- bpy/types/__init__.pyi +73 -26
- bpy_types/__init__.pyi +45 -0
- {fake_bpy_module-20240509.dist-info → fake_bpy_module-20240511.dist-info}/METADATA +1 -1
- {fake_bpy_module-20240509.dist-info → fake_bpy_module-20240511.dist-info}/RECORD +23 -21
- freestyle/types/__init__.pyi +5 -2
- mathutils/__init__.pyi +2 -2
- mathutils/geometry/__init__.pyi +2 -1
- {fake_bpy_module-20240509.dist-info → fake_bpy_module-20240511.dist-info}/WHEEL +0 -0
- {fake_bpy_module-20240509.dist-info → fake_bpy_module-20240511.dist-info}/top_level.txt +0 -0
freestyle/types/__init__.pyi
CHANGED
|
@@ -3136,10 +3136,13 @@ class orientedViewEdgeIterator:
|
|
|
3136
3136
|
obtained from a ViewVertex by calling edges_begin() or edges_end().
|
|
3137
3137
|
"""
|
|
3138
3138
|
|
|
3139
|
-
object: typing.
|
|
3139
|
+
object: typing.Tuple[ViewEdge]
|
|
3140
3140
|
""" The oriented ViewEdge (i.e., a tuple of the pointed ViewEdge and a boolean
|
|
3141
3141
|
value) currently pointed to by this iterator. If the boolean value is true,
|
|
3142
|
-
the ViewEdge is incoming.
|
|
3142
|
+
the ViewEdge is incoming.
|
|
3143
|
+
|
|
3144
|
+
:type: typing.Tuple[ViewEdge]
|
|
3145
|
+
"""
|
|
3143
3146
|
|
|
3144
3147
|
def __init__(self):
|
|
3145
3148
|
"""Creates an `orientedViewEdgeIterator` using either the
|
mathutils/__init__.pyi
CHANGED
|
@@ -676,11 +676,11 @@ class Matrix:
|
|
|
676
676
|
"""
|
|
677
677
|
...
|
|
678
678
|
|
|
679
|
-
def decompose(self) -> Quaternion:
|
|
679
|
+
def decompose(self) -> typing.Tuple[Vector, Quaternion, Vector]:
|
|
680
680
|
"""Return the translation, rotation, and scale components of this matrix.
|
|
681
681
|
|
|
682
682
|
:return: tuple of translation, rotation, and scale
|
|
683
|
-
:rtype: Quaternion
|
|
683
|
+
:rtype: typing.Tuple[Vector, Quaternion, Vector]
|
|
684
684
|
"""
|
|
685
685
|
...
|
|
686
686
|
|
mathutils/geometry/__init__.pyi
CHANGED
|
@@ -325,13 +325,14 @@ def intersect_point_line(
|
|
|
325
325
|
mathutils.Vector,
|
|
326
326
|
],
|
|
327
327
|
line_p2,
|
|
328
|
-
):
|
|
328
|
+
) -> typing.Tuple[mathutils.Vector]:
|
|
329
329
|
"""Takes a point and a line and returns a tuple with the closest point on the line and its distance from the first point of the line as a percentage of the length of the line.
|
|
330
330
|
|
|
331
331
|
:param pt: Point
|
|
332
332
|
:type pt: typing.Union[typing.Sequence[float], mathutils.Vector]
|
|
333
333
|
:param line_p1: First point of the lineSecond point of the line
|
|
334
334
|
:type line_p1: typing.Union[typing.Sequence[float], mathutils.Vector, typing.Sequence[float], mathutils.Vector]
|
|
335
|
+
:rtype: typing.Tuple[mathutils.Vector]
|
|
335
336
|
"""
|
|
336
337
|
|
|
337
338
|
...
|
|
File without changes
|
|
File without changes
|