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
d5ae027d
Commit
d5ae027d
authored
Jul 30, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify some logic in gcview
parent
9a2b023c
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
8 deletions
+6
-8
actors.py
printrun/gl/libtatlin/actors.py
+6
-8
No files found.
printrun/gl/libtatlin/actors.py
View file @
d5ae027d
...
...
@@ -281,10 +281,9 @@ class GcodeModel(Model):
for
gline
in
layer
:
if
not
gline
.
is_move
:
continue
if
gline
.
x
is
not
None
\
or
gline
.
y
is
not
None
\
or
gline
.
z
is
not
None
:
has_movement
=
True
if
gline
.
x
is
None
and
gline
.
y
is
None
and
gline
.
z
is
None
:
continue
has_movement
=
True
current_pos
=
(
gline
.
current_x
,
gline
.
current_y
,
gline
.
current_z
)
if
not
gline
.
extruding
:
travel_vertex_list
.
append
(
prev_pos
)
...
...
@@ -521,10 +520,9 @@ class GcodeModelLight(Model):
for
gline
in
layer
:
if
not
gline
.
is_move
:
continue
if
gline
.
x
is
not
None
\
or
gline
.
y
is
not
None
\
or
gline
.
z
is
not
None
:
has_movement
=
True
if
gline
.
x
is
None
and
gline
.
y
is
None
and
gline
.
z
is
None
:
continue
has_movement
=
True
vertex_list
.
append
(
prev_pos
)
current_pos
=
(
gline
.
current_x
,
gline
.
current_y
,
gline
.
current_z
)
vertex_list
.
append
(
current_pos
)
...
...
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