Hello,
It seems possible to use “Modifier” with a “BMesh”.
An example with a “Change” type “triangulate”.
import bmesh
import bpy
Obj_Mesh = bpy.data.objects['Suzanne']
bm = bmesh.new()
bm.from_mesh(Obj_Mesh.data)
bmesh.ops.triangulate(bm, faces=bm.faces)
Is it possible with “Modifier : Boolean” with Bmesh?
In a python console, if I type this:
import bmesh
bmesh.ops. => And <ctrl> + space.
well there is the “Edit” type “triangulate” but none of type “Boolean”…