fake-bpy-module 20240918__py3-none-any.whl → 20240920__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.

@@ -989,6 +989,59 @@ def reorder(
989
989
  :type direction: typing.Literal['TOP','UP','DOWN','BOTTOM'] | None
990
990
  """
991
991
 
992
+ def reproject(
993
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
994
+ execution_context: int | str | None = None,
995
+ undo: bool | None = None,
996
+ *,
997
+ type: typing.Literal["FRONT", "SIDE", "TOP", "VIEW", "SURFACE", "CURSOR"]
998
+ | None = "VIEW",
999
+ keep_original: bool | None = False,
1000
+ offset: float | None = 0.0,
1001
+ ):
1002
+ """Reproject the selected strokes from the current viewpoint as if they had been newly drawn (e.g. to fix problems from accidental 3D cursor movement or accidental viewport changes, or for matching deforming geometry)
1003
+
1004
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1005
+ :type execution_context: int | str | None
1006
+ :type undo: bool | None
1007
+ :param type: Projection Type
1008
+
1009
+ FRONT
1010
+ Front -- Reproject the strokes using the X-Z plane.
1011
+
1012
+ SIDE
1013
+ Side -- Reproject the strokes using the Y-Z plane.
1014
+
1015
+ TOP
1016
+ Top -- Reproject the strokes using the X-Y plane.
1017
+
1018
+ VIEW
1019
+ View -- Reproject the strokes to end up on the same plane, as if drawn from the current viewpoint using 'Cursor' Stroke Placement.
1020
+
1021
+ SURFACE
1022
+ Surface -- Reproject the strokes on to the scene geometry, as if drawn using 'Surface' placement.
1023
+
1024
+ CURSOR
1025
+ Cursor -- Reproject the strokes using the orientation of 3D cursor.
1026
+ :type type: typing.Literal['FRONT','SIDE','TOP','VIEW','SURFACE','CURSOR'] | None
1027
+ :param keep_original: Keep Original, Keep original strokes and create a copy before reprojecting
1028
+ :type keep_original: bool | None
1029
+ :param offset: Surface Offset
1030
+ :type offset: float | None
1031
+ """
1032
+
1033
+ def reset_uvs(
1034
+ override_context: bpy.types.Context | dict[str, typing.Any] = None,
1035
+ execution_context: int | str | None = None,
1036
+ undo: bool | None = None,
1037
+ ):
1038
+ """Reset UV transformation to default values
1039
+
1040
+ :type override_context: bpy.types.Context | dict[str, typing.Any]
1041
+ :type execution_context: int | str | None
1042
+ :type undo: bool | None
1043
+ """
1044
+
992
1045
  def sculpt_paint(
993
1046
  override_context: bpy.types.Context | dict[str, typing.Any] = None,
994
1047
  execution_context: int | str | None = None,