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

bpy/ops/mesh/__init__.pyi CHANGED
@@ -1292,10 +1292,10 @@ def intersect(
1292
1292
  :param solver: Solver, Which Intersect solver to use
1293
1293
 
1294
1294
  FAST
1295
- Fast -- Faster solver, some limitations.
1295
+ Float -- Simple solver with good performance, without support for overlapping geometry.
1296
1296
 
1297
1297
  EXACT
1298
- Exact -- Exact solver, slower, handles more cases.
1298
+ Exact -- Slower solver with the best results for coplanar faces.
1299
1299
  :type solver: typing.Literal['FAST','EXACT'] | None
1300
1300
  """
1301
1301
 
@@ -3686,7 +3686,7 @@ def tris_convert_to_quads(
3686
3686
  materials: bool | None = False,
3687
3687
  deselect_joined: bool | None = False,
3688
3688
  ):
3689
- """Join triangles into quads
3689
+ """Merge triangles into four sided polygons where possible
3690
3690
 
3691
3691
  :type execution_context: int | str | None
3692
3692
  :type undo: bool | None
@@ -980,7 +980,7 @@ def trim_box_gesture(
980
980
  use_cursor_depth: bool | None = False,
981
981
  trim_orientation: typing.Literal["VIEW", "SURFACE"] | None = "VIEW",
982
982
  trim_extrude_mode: typing.Literal["PROJECT", "FIXED"] | None = "FIXED",
983
- trim_solver: typing.Literal["EXACT", "FAST"] | None = "FAST",
983
+ trim_solver: typing.Literal["EXACT", "FLOAT", "MANIFOLD"] | None = "MANIFOLD",
984
984
  ):
985
985
  """Execute a boolean operation on the mesh and a rectangle defined by the cursor
986
986
 
@@ -1032,11 +1032,14 @@ def trim_box_gesture(
1032
1032
  :param trim_solver: Solver
1033
1033
 
1034
1034
  EXACT
1035
- Exact -- Use the exact boolean solver.
1035
+ Exact -- Slower solver with the best results for coplanar faces.
1036
1036
 
1037
- FAST
1038
- Fast -- Use the fast float boolean solver.
1039
- :type trim_solver: typing.Literal['EXACT','FAST'] | None
1037
+ FLOAT
1038
+ Float -- Simple solver with good performance, without support for overlapping geometry.
1039
+
1040
+ MANIFOLD
1041
+ Manifold -- Fastest solver that works only on manifold meshes but gives better results.
1042
+ :type trim_solver: typing.Literal['EXACT','FLOAT','MANIFOLD'] | None
1040
1043
  """
1041
1044
 
1042
1045
  def trim_lasso_gesture(
@@ -1054,7 +1057,7 @@ def trim_lasso_gesture(
1054
1057
  use_cursor_depth: bool | None = False,
1055
1058
  trim_orientation: typing.Literal["VIEW", "SURFACE"] | None = "VIEW",
1056
1059
  trim_extrude_mode: typing.Literal["PROJECT", "FIXED"] | None = "FIXED",
1057
- trim_solver: typing.Literal["EXACT", "FAST"] | None = "FAST",
1060
+ trim_solver: typing.Literal["EXACT", "FLOAT", "MANIFOLD"] | None = "MANIFOLD",
1058
1061
  ):
1059
1062
  """Execute a boolean operation on the mesh and a shape defined by the cursor
1060
1063
 
@@ -1104,11 +1107,14 @@ def trim_lasso_gesture(
1104
1107
  :param trim_solver: Solver
1105
1108
 
1106
1109
  EXACT
1107
- Exact -- Use the exact boolean solver.
1110
+ Exact -- Slower solver with the best results for coplanar faces.
1111
+
1112
+ FLOAT
1113
+ Float -- Simple solver with good performance, without support for overlapping geometry.
1108
1114
 
1109
- FAST
1110
- Fast -- Use the fast float boolean solver.
1111
- :type trim_solver: typing.Literal['EXACT','FAST'] | None
1115
+ MANIFOLD
1116
+ Manifold -- Fastest solver that works only on manifold meshes but gives better results.
1117
+ :type trim_solver: typing.Literal['EXACT','FLOAT','MANIFOLD'] | None
1112
1118
  """
1113
1119
 
1114
1120
  def trim_line_gesture(
@@ -1129,7 +1135,7 @@ def trim_line_gesture(
1129
1135
  use_cursor_depth: bool | None = False,
1130
1136
  trim_orientation: typing.Literal["VIEW", "SURFACE"] | None = "VIEW",
1131
1137
  trim_extrude_mode: typing.Literal["PROJECT", "FIXED"] | None = "FIXED",
1132
- trim_solver: typing.Literal["EXACT", "FAST"] | None = "FAST",
1138
+ trim_solver: typing.Literal["EXACT", "FLOAT", "MANIFOLD"] | None = "MANIFOLD",
1133
1139
  ):
1134
1140
  """Remove a portion of the mesh on one side of a line
1135
1141
 
@@ -1185,11 +1191,14 @@ def trim_line_gesture(
1185
1191
  :param trim_solver: Solver
1186
1192
 
1187
1193
  EXACT
1188
- Exact -- Use the exact boolean solver.
1194
+ Exact -- Slower solver with the best results for coplanar faces.
1189
1195
 
1190
- FAST
1191
- Fast -- Use the fast float boolean solver.
1192
- :type trim_solver: typing.Literal['EXACT','FAST'] | None
1196
+ FLOAT
1197
+ Float -- Simple solver with good performance, without support for overlapping geometry.
1198
+
1199
+ MANIFOLD
1200
+ Manifold -- Fastest solver that works only on manifold meshes but gives better results.
1201
+ :type trim_solver: typing.Literal['EXACT','FLOAT','MANIFOLD'] | None
1193
1202
  """
1194
1203
 
1195
1204
  def trim_polyline_gesture(
@@ -1204,7 +1213,7 @@ def trim_polyline_gesture(
1204
1213
  use_cursor_depth: bool | None = False,
1205
1214
  trim_orientation: typing.Literal["VIEW", "SURFACE"] | None = "VIEW",
1206
1215
  trim_extrude_mode: typing.Literal["PROJECT", "FIXED"] | None = "FIXED",
1207
- trim_solver: typing.Literal["EXACT", "FAST"] | None = "FAST",
1216
+ trim_solver: typing.Literal["EXACT", "FLOAT", "MANIFOLD"] | None = "MANIFOLD",
1208
1217
  ):
1209
1218
  """Execute a boolean operation on the mesh and a polygonal shape defined by the cursor
1210
1219
 
@@ -1248,11 +1257,14 @@ def trim_polyline_gesture(
1248
1257
  :param trim_solver: Solver
1249
1258
 
1250
1259
  EXACT
1251
- Exact -- Use the exact boolean solver.
1260
+ Exact -- Slower solver with the best results for coplanar faces.
1261
+
1262
+ FLOAT
1263
+ Float -- Simple solver with good performance, without support for overlapping geometry.
1252
1264
 
1253
- FAST
1254
- Fast -- Use the fast float boolean solver.
1255
- :type trim_solver: typing.Literal['EXACT','FAST'] | None
1265
+ MANIFOLD
1266
+ Manifold -- Fastest solver that works only on manifold meshes but gives better results.
1267
+ :type trim_solver: typing.Literal['EXACT','FLOAT','MANIFOLD'] | None
1256
1268
  """
1257
1269
 
1258
1270
  def uv_sculpt_grab(