Did I find the right examples for you? yes no Crawl my project Python Jobs
All Samples(3) | Call(3) | Derive(0) | Import(0)
src/s/v/sverchok-HEAD/node_ConvexHull.py sverchok(Download)
bm=bmesh.new() bm_verts = [bm.verts.new(v) for v in vertices] bmesh.ops.convex_hull(bm, input=bm_verts, use_existing_faces=False) edges = []
src/b/l/blenderpython-HEAD/scripts/addons_extern/object_destruction/fracture_cell/fracture_cell_setup.py blenderpython(Download)
bmesh.ops.remove_doubles(bm, verts=bm.verts, dist=0.005) try: bmesh.ops.convex_hull(bm, input=bm.verts) except RuntimeError: import traceback
src/b/l/Blender-Destructability-Editor-HEAD/object_destruction/fracture_cell/fracture_cell_setup.py Blender-Destructability-Editor(Download)
bmesh.ops.remove_doubles(bm, verts=bm.verts, dist=0.005) try: bmesh.ops.convex_hull(bm, input=bm.verts) except RuntimeError: import traceback