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
3b30537b
Commit
3b30537b
authored
Nov 04, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Remove last* from GCodeAnalyzer as they are never used elsewhere
parent
a3814759
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
0 additions
and
12 deletions
+0
-12
GCodeAnalyzer.py
printrun/GCodeAnalyzer.py
+0
-12
No files found.
printrun/GCodeAnalyzer.py
View file @
3b30537b
...
...
@@ -41,10 +41,6 @@ class GCodeAnalyzer():
self
.
e
=
0
self
.
emax
=
0
self
.
f
=
1000
self
.
lastX
=
0
self
.
lastY
=
0
self
.
lastZ
=
0
self
.
lastE
=
0
self
.
xOffset
=
0
self
.
yOffset
=
0
self
.
zOffset
=
0
...
...
@@ -71,10 +67,6 @@ class GCodeAnalyzer():
#get movement codes
if
gline
.
is_move
:
self
.
lastX
=
self
.
x
self
.
lastY
=
self
.
y
self
.
lastZ
=
self
.
z
self
.
lastE
=
self
.
e
if
gline
.
f
is
not
None
:
self
.
f
=
gline
.
f
...
...
@@ -99,10 +91,6 @@ class GCodeAnalyzer():
if
self
.
e
!=
self
.
eOffset
+
gline
.
e
:
self
.
e
=
self
.
eOffset
+
gline
.
e
elif
code_g
==
28
or
code_g
==
161
:
self
.
lastX
=
self
.
x
self
.
lastY
=
self
.
y
self
.
lastZ
=
self
.
z
self
.
lastE
=
self
.
e
homeAll
=
False
if
gline
.
x
is
None
and
gline
.
y
is
None
and
gline
.
z
is
None
:
homeAll
=
True
if
gline
.
x
is
not
None
or
homeAll
:
...
...
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