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
52bb2bf9
Commit
52bb2bf9
authored
Aug 27, 2011
by
Skateboss
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added two functions to return measurements in 'mm' when loading a .stl or gcode file.
parent
31316372
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
82 additions
and
0 deletions
+82
-0
pronsole.py
pronsole.py
+82
-0
No files found.
pronsole.py
View file @
52bb2bf9
...
@@ -18,6 +18,88 @@ except:
...
@@ -18,6 +18,88 @@ except:
def
dosify
(
name
):
def
dosify
(
name
):
return
os
.
path
.
split
(
name
)[
1
]
.
split
(
"."
)[
0
][:
8
]
+
".g"
return
os
.
path
.
split
(
name
)[
1
]
.
split
(
"."
)[
0
][:
8
]
+
".g"
def
minmaxpoints
(
g
):
Xcur
=
0.0
Ycur
=
0.0
Zcur
=
0.0
Xmin
=
1000000
Ymin
=
1000000
Zmin
=
1000000
Xmax
=-
1000000
Ymax
=-
1000000
Zmax
=-
1000000
for
i
in
g
:
if
"X"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Xcur
=
float
(
i
.
split
(
"X"
)[
1
]
.
split
(
" "
)[
0
])
if
Xcur
<
Xmin
and
Xcur
>
5.0
:
Xmin
=
Xcur
if
Xcur
>
Xmax
:
Xmax
=
Xcur
except
:
pass
if
"Y"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Ycur
=
float
(
i
.
split
(
"Y"
)[
1
]
.
split
(
" "
)[
0
])
if
Ycur
<
Ymin
and
Ycur
>
5.0
:
Ymin
=
Ycur
if
Ycur
>
Ymax
:
Ymax
=
Ycur
except
:
pass
if
"Z"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Zcur
=
float
(
i
.
split
(
"Z"
)[
1
]
.
split
(
" "
)[
0
])
if
Zcur
<
Zmin
:
Zmin
=
Zcur
if
Zcur
>
Zmax
:
Zmax
=
Zcur
except
:
pass
return
(
Xmin
,
Xmax
,
Ymin
,
Ymax
,
Zmin
,
Zmax
)
def
measurements
(
g
):
Xcur
=
0.0
Ycur
=
0.0
Zcur
=
0.0
Xmin
=
1000000
Ymin
=
1000000
Zmin
=
1000000
Xmax
=-
1000000
Ymax
=-
1000000
Zmax
=-
1000000
Xtot
=
0
Ytot
=
0
Ztot
=
0
for
i
in
g
:
if
"X"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Xcur
=
float
(
i
.
split
(
"X"
)[
1
]
.
split
(
" "
)[
0
])
if
Xcur
<
Xmin
and
Xcur
>
5.0
:
Xmin
=
Xcur
if
Xcur
>
Xmax
:
Xmax
=
Xcur
except
:
pass
if
"Y"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Ycur
=
float
(
i
.
split
(
"Y"
)[
1
]
.
split
(
" "
)[
0
])
if
Ycur
<
Ymin
and
Ycur
>
5.0
:
Ymin
=
Ycur
if
Ycur
>
Ymax
:
Ymax
=
Ycur
except
:
pass
if
"Z"
in
i
and
(
"G1"
in
i
or
"G0"
in
i
):
try
:
Zcur
=
float
(
i
.
split
(
"Z"
)[
1
]
.
split
(
" "
)[
0
])
if
Zcur
<
Zmin
:
Zmin
=
Zcur
if
Zcur
>
Zmax
:
Zmax
=
Zcur
except
:
pass
Xtot
=
Xmax
-
Xmin
Ytot
=
Ymax
-
Ymin
Ztot
=
Zmax
-
Zmin
return
(
Xtot
,
Ytot
,
Ztot
)
def
totalelength
(
g
):
def
totalelength
(
g
):
tot
=
0
tot
=
0
...
...
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