Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
blender-addons
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
blender
blender-addons
Commits
1b0bdd04
Commit
1b0bdd04
authored
12 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
minor improvement to cell fracture algo.
parent
b5dd382b
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
object_fracture_cell/__init__.py
+4
-4
4 additions, 4 deletions
object_fracture_cell/__init__.py
object_fracture_cell/fracture_cell_calc.py
+7
-3
7 additions, 3 deletions
object_fracture_cell/fracture_cell_calc.py
with
11 additions
and
7 deletions
object_fracture_cell/__init__.py
+
4
−
4
View file @
1b0bdd04
...
@@ -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
"
}
...
...
This diff is collapsed.
Click to expand it.
object_fracture_cell/fracture_cell_calc.py
+
7
−
3
View file @
1b0bdd04
...
@@ -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
:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment