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
5722bc15
Commit
5722bc15
authored
14 years ago
by
Campbell Barton
Browse files
Options
Downloads
Patches
Plain Diff
bugfix [#25635] STL export results in error
also made some pep8 corrections
parent
55c6ce61
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
io_mesh_stl/blender_utils.py
+16
-12
16 additions, 12 deletions
io_mesh_stl/blender_utils.py
io_mesh_stl/stl_utils.py
+2
-0
2 additions, 0 deletions
io_mesh_stl/stl_utils.py
with
18 additions
and
12 deletions
io_mesh_stl/blender_utils.py
+
16
−
12
View file @
5722bc15
...
...
@@ -38,16 +38,20 @@ def faces_from_mesh(ob, apply_modifier=False, triangulate=True):
except
SystemError
:
return
()
def
iter_face_index
():
'''
From a list of faces, return the face triangulated if needed.
'''
for
face
in
mesh
.
faces
:
if
triangulate
and
len
(
face
.
vertices
)
==
4
:
yield
face
.
vertices
[:
3
]
yield
face
.
vertices
[
2
:]
+
[
face
.
vertices
[
0
]]
else
:
yield
list
(
face
.
vertices
)
return
([
tuple
(
mesh
.
vertices
[
index
].
co
*
ob
.
matrix_world
)
if
triangulate
:
# From a list of faces, return the face triangulated if needed.
def
iter_face_index
():
for
face
in
mesh
.
faces
:
vertices
=
face
.
vertices
[:]
if
len
(
vertices
)
==
4
:
yield
vertices
[
0
],
vertices
[
1
],
vertices
[
2
]
yield
vertices
[
2
],
vertices
[
3
],
vertices
[
0
]
else
:
yield
vertices
else
:
def
iter_face_index
():
for
face
in
mesh
.
faces
:
yield
face
.
vertices
[:]
return
([(
mesh
.
vertices
[
index
].
co
*
ob
.
matrix_world
)[:]
for
index
in
indexes
]
for
indexes
in
iter_face_index
())
This diff is collapsed.
Click to expand it.
io_mesh_stl/stl_utils.py
+
2
−
0
View file @
5722bc15
...
...
@@ -65,6 +65,7 @@ class ListDict(dict):
BINARY_HEADER
=
80
BINARY_STRIDE
=
12
*
4
+
2
def
_is_ascii_file
(
data
):
'''
This function returns True if the data represents an ASCII file.
...
...
@@ -77,6 +78,7 @@ def _is_ascii_file(data):
return
not
data
.
size
()
==
BINARY_HEADER
+
4
+
BINARY_STRIDE
*
size
def
_binary_read
(
data
):
# an stl binary file is
# - 80 bytes of description
...
...
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