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
ad23a280
Commit
ad23a280
authored
Jul 30, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Don't add layers without x/y/z movement to gcview
parent
7c36b6c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
actors.py
printrun/gl/libtatlin/actors.py
+7
-1
No files found.
printrun/gl/libtatlin/actors.py
View file @
ad23a280
...
...
@@ -277,9 +277,14 @@ class GcodeModel(Model):
prev_pos
=
(
0
,
0
,
0
)
for
layer_idx
,
layer
in
enumerate
(
model_data
.
all_layers
):
has_movement
=
False
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
current_pos
=
(
gline
.
current_x
,
gline
.
current_y
,
gline
.
current_z
)
if
not
gline
.
extruding
:
travel_vertex_list
.
append
(
prev_pos
)
...
...
@@ -301,7 +306,8 @@ class GcodeModel(Model):
count_print_vertices
.
append
(
len
(
vertex_list
))
gline
.
gcview_end_vertex
=
len
(
count_print_indices
)
-
1
self
.
layer_stops
.
append
(
len
(
count_print_indices
)
-
1
)
if
has_movement
:
self
.
layer_stops
.
append
(
len
(
count_print_indices
)
-
1
)
if
callback
:
callback
(
layer_idx
+
1
,
num_layers
)
...
...
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