diff --git a/object_fracture_cell/fracture_cell_setup.py b/object_fracture_cell/fracture_cell_setup.py
index 2f6625bbff34da1e5321b68cdd4f25178948ec7c..9a6ccbbfe52c234a0435928d8f2165206f7d8ed1 100644
--- a/object_fracture_cell/fracture_cell_setup.py
+++ b/object_fracture_cell/fracture_cell_setup.py
@@ -109,6 +109,8 @@ def _points_from_object(obj, source):
             points.extend([p for spline in get_splines(gp)
                              for p in spline])
 
+    print("Found %d points" % len(points))
+
     return points
 
 
@@ -209,7 +211,7 @@ def cell_fracture_objects(scene, obj,
         # WORKAROUND FOR CONVEX HULL BUG/LIMIT
         # XXX small noise
         import random
-        def R(): return (random.random() - 0.5) * 0.01
+        def R(): return (random.random() - 0.5) * 0.001
         # XXX small noise
 
         for i, co in enumerate(cell_points):