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
2d0d71f9
Commit
2d0d71f9
authored
Apr 20, 2012
by
kliment
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #205 from kliment/master
Layer info display merge
parents
a06669fe
d731aaf9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
11 additions
and
2 deletions
+11
-2
gviz.py
gviz.py
+11
-2
No files found.
gviz.py
View file @
2d0d71f9
...
...
@@ -12,13 +12,17 @@
#
# You should have received a copy of the GNU General Public License
# along with Printrun. If not, see <http://www.gnu.org/licenses/>.
import
wx
,
time
class
window
(
wx
.
Frame
):
def
__init__
(
self
,
f
,
size
=
(
600
,
600
),
build_dimensions
=
[
200
,
200
,
100
,
0
,
0
,
0
],
grid
=
(
10
,
50
),
extrusion_width
=
0.5
):
wx
.
Frame
.
__init__
(
self
,
None
,
title
=
"Gcode view, shift to move view, mousewheel to set layer"
,
size
=
(
size
[
0
],
size
[
1
]))
self
.
p
=
gviz
(
self
,
size
=
size
,
build_dimensions
=
build_dimensions
,
grid
=
grid
,
extrusion_width
=
extrusion_width
)
# Set up a status bar for displaying info (Jezmy)
self
.
CreateStatusBar
(
1
);
self
.
SetStatusText
(
"Layer number and Z position show here when you scroll"
);
s
=
time
.
time
()
#print time.time()-s
self
.
initpos
=
[
0
,
0
]
...
...
@@ -76,6 +80,7 @@ class window(wx.Frame):
class
gviz
(
wx
.
Panel
):
def
__init__
(
self
,
parent
,
size
=
(
200
,
200
),
build_dimensions
=
[
200
,
200
,
100
,
0
,
0
,
0
],
grid
=
(
10
,
50
),
extrusion_width
=
0.5
):
wx
.
Panel
.
__init__
(
self
,
parent
,
-
1
,
size
=
(
size
[
0
],
size
[
1
]))
self
.
parent
=
parent
self
.
size
=
size
self
.
build_dimensions
=
build_dimensions
self
.
grid
=
grid
...
...
@@ -122,12 +127,16 @@ class gviz(wx.Panel):
def
layerup
(
self
):
if
(
self
.
layerindex
+
1
<
len
(
self
.
layers
)):
self
.
layerindex
+=
1
# Display layer info on statusbar (Jezmy)
self
.
parent
.
SetStatusText
(
"Layer "
+
str
(
self
.
layerindex
+
1
)
+
" - Going Up - Z = "
+
str
(
self
.
layers
[
self
.
layerindex
])
+
" mm"
,
0
)
self
.
repaint
()
self
.
Refresh
()
def
layerdown
(
self
):
if
(
self
.
layerindex
>
0
):
self
.
layerindex
-=
1
self
.
layerindex
-=
1
# Display layer info on statusbar (Jezmy)
self
.
parent
.
SetStatusText
(
"Layer "
+
str
(
self
.
layerindex
+
1
)
+
" - Going Down - Z = "
+
str
(
self
.
layers
[
self
.
layerindex
])
+
" mm"
,
0
)
self
.
repaint
()
self
.
Refresh
()
...
...
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