Skip to content
Snippets Groups Projects
Commit 1b0bdd04 authored by Campbell Barton's avatar Campbell Barton
Browse files

minor improvement to cell fracture algo.

parent b5dd382b
No related branches found
No related tags found
No related merge requests found
...@@ -24,10 +24,10 @@ bl_info = { ...@@ -24,10 +24,10 @@ bl_info = {
"location": "Search > Fracture Object & Add -> Fracture Helper Objects", "location": "Search > Fracture Object & Add -> Fracture Helper Objects",
"description": "Fractured Object, Bomb, Projectile, Recorder", "description": "Fractured Object, Bomb, Projectile, Recorder",
"warning": "", "warning": "",
"wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"\ "wiki_url": "http://wiki.blender.org/index.php/Extensions:2.6/Py/"
"Scripts/Object/Fracture", "Scripts/Object/Fracture",
"tracker_url": "https://projects.blender.org/tracker/index.php?"\ "tracker_url": "https://projects.blender.org/tracker/index.php?"
"func=detail&aid=21793", "func=detail&aid=21793",
"category": "Object"} "category": "Object"}
......
...@@ -24,6 +24,7 @@ ...@@ -24,6 +24,7 @@
def points_as_bmesh_cells(verts, points, def points_as_bmesh_cells(verts, points,
margin_bounds=0.05, margin_bounds=0.05,
margin_cell=0.0): margin_cell=0.0):
from math import sqrt
import mathutils import mathutils
from mathutils import Vector from mathutils import Vector
...@@ -79,11 +80,14 @@ def points_as_bmesh_cells(verts, points, ...@@ -79,11 +80,14 @@ def points_as_bmesh_cells(verts, points,
if len(plane_indices) != len(planes): if len(plane_indices) != len(planes):
planes[:] = [planes[k] for k in plane_indices] planes[:] = [planes[k] for k in plane_indices]
distance_max = vertices[0].length # for comparisons use length_squared and delay
for k in range(1, len(vertices)): # converting to a real length until the end.
distance = vertices[k].length distance_max = 10000000000.0 # a big value!
for v in vertices:
distance = v.length_squared
if distance_max < distance: if distance_max < distance:
distance_max = distance distance_max = distance
distance_max = sqrt(distance_max) # make real length
distance_max *= 2.0 distance_max *= 2.0
if len(vertices) == 0: if len(vertices) == 0:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment