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
f5d2617e
Commit
f5d2617e
authored
Jul 18, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix main viewers
parent
8a408899
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
2 deletions
+6
-2
gcview.py
printrun/gcview.py
+3
-0
gviz.py
printrun/gviz.py
+3
-2
No files found.
printrun/gcview.py
View file @
f5d2617e
...
...
@@ -57,6 +57,9 @@ class GcodeViewPanel(wxGLPanel):
self
.
basequat
=
[
0
,
0
,
0
,
1
]
self
.
mousepos
=
[
0
,
0
]
def
setlayercb
(
self
,
layer
):
pass
def
create_objects
(
self
):
'''create opengl objects when opengl is initialized'''
for
obj
in
self
.
parent
.
objects
:
...
...
printrun/gviz.py
View file @
f5d2617e
...
...
@@ -382,8 +382,9 @@ class Gviz(wx.Panel):
self
.
clear
()
self
.
add_parsed_gcodes
(
gcode
.
lines
)
max_layers
=
len
(
self
.
layers
)
self
.
parent
.
layerslider
.
SetRange
(
0
,
max_layers
-
1
)
self
.
parent
.
layerslider
.
SetValue
(
0
)
if
hasattr
(
self
.
parent
,
"layerslider"
):
self
.
parent
.
layerslider
.
SetRange
(
0
,
max_layers
-
1
)
self
.
parent
.
layerslider
.
SetValue
(
0
)
# FIXME : there's code duplication going on there, we should factor it (but
# the reason addgcode is not factored as a add_parsed_gcodes([gline]) is
...
...
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