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
54bdf39f
Commit
54bdf39f
authored
Nov 04, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Cleanup gcoder.Gcode._preprocess_layers
parent
8855fe3f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
10 additions
and
13 deletions
+10
-13
gcoder.py
printrun/gcoder.py
+10
-13
No files found.
printrun/gcoder.py
View file @
54bdf39f
...
...
@@ -375,19 +375,16 @@ class GCode(object):
count_noe
=
self
.
filament_length
<=
0
for
line
in
self
.
lines
:
if
not
line
.
is_move
and
line
.
command
!=
"G92"
and
line
.
command
!=
"G28"
:
continue
if
line
.
is_move
:
if
line
.
e
or
count_noe
:
if
line
.
current_x
is
not
None
:
xmin
=
min
(
xmin
,
line
.
current_x
)
xmax
=
max
(
xmax
,
line
.
current_x
)
if
line
.
current_y
is
not
None
:
ymin
=
min
(
ymin
,
line
.
current_y
)
ymax
=
max
(
ymax
,
line
.
current_y
)
if
line
.
current_z
is
not
None
:
zmin
=
min
(
zmin
,
line
.
current_z
)
zmax
=
max
(
zmax
,
line
.
current_z
)
if
line
.
is_move
and
(
line
.
extruding
or
count_noe
):
if
line
.
current_x
is
not
None
:
xmin
=
min
(
xmin
,
line
.
current_x
)
xmax
=
max
(
xmax
,
line
.
current_x
)
if
line
.
current_y
is
not
None
:
ymin
=
min
(
ymin
,
line
.
current_y
)
ymax
=
max
(
ymax
,
line
.
current_y
)
if
line
.
current_z
is
not
None
:
zmin
=
min
(
zmin
,
line
.
current_z
)
zmax
=
max
(
zmax
,
line
.
current_z
)
self
.
xmin
=
xmin
if
not
math
.
isinf
(
xmin
)
else
0
self
.
xmax
=
xmax
if
not
math
.
isinf
(
xmax
)
else
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