Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Contribute to GitLab
Sign in
Toggle navigation
P
Printrun
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
machinery
Printrun
Commits
3bb38099
Commit
3bb38099
authored
Jul 29, 2011
by
Kliment
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Binary STL read for plater
parent
85078b82
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
26 additions
and
2 deletions
+26
-2
stltool.py
stltool.py
+26
-2
No files found.
stltool.py
View file @
3bb38099
import
sys
import
sys
,
struct
I
=
[
[
1
,
0
,
0
,
0
],
...
...
@@ -56,7 +56,31 @@ class stl:
return
self
.
f
=
list
(
open
(
filename
))
if
not
self
.
f
[
0
]
.
startswith
(
"solid"
):
print
"Not an ascii stl solid"
print
"Not an ascii stl solid - attempting to parse as binary"
f
=
open
(
filename
,
"rb"
)
buf
=
f
.
read
(
84
)
while
(
len
(
buf
)
<
84
):
newdata
=
f
.
read
(
84
-
len
(
buf
))
if
not
len
(
newdata
):
break
buf
+=
newdata
facetcount
=
struct
.
unpack_from
(
"<I"
,
buf
,
80
)
facetformat
=
struct
.
Struct
(
"<ffffffffffffH"
)
for
i
in
xrange
(
facetcount
[
0
]):
buf
=
f
.
read
(
50
)
while
(
len
(
buf
)
<
50
):
newdata
=
f
.
read
(
50
-
len
(
buf
))
if
not
len
(
newdata
):
break
buf
+=
newdata
fd
=
facetformat
.
unpack
(
buf
)
self
.
name
=
"binary soloid"
self
.
facet
=
[
fd
[:
3
],[
fd
[
3
:
6
],
fd
[
6
:
9
],
fd
[
9
:
12
]]]
self
.
facets
+=
[
self
.
facet
]
facet
=
self
.
facet
self
.
facetsminz
+=
[(
min
(
map
(
lambda
x
:
x
[
2
],
facet
[
1
])),
facet
)]
self
.
facetsmaxz
+=
[(
max
(
map
(
lambda
x
:
x
[
2
],
facet
[
1
])),
facet
)]
f
.
close
()
return
for
i
in
self
.
f
:
if
not
self
.
parseline
(
i
):
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment