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.

@@ -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.Any
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
 
@@ -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
  ...