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
82b95c67
Commit
82b95c67
authored
May 18, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
More cleanup on gviz.
I'm hunting unjustified try: except: blocks.
parent
a53c88a3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
11 deletions
+8
-11
gviz.py
printrun/gviz.py
+8
-11
No files found.
printrun/gviz.py
View file @
82b95c67
...
@@ -176,29 +176,26 @@ class gviz(wx.Panel):
...
@@ -176,29 +176,26 @@ class gviz(wx.Panel):
wx
.
CallAfter
(
self
.
Refresh
)
wx
.
CallAfter
(
self
.
Refresh
)
def
layerup
(
self
):
def
layerup
(
self
):
if
(
self
.
layerindex
+
1
<
len
(
self
.
layers
)):
if
self
.
layerindex
+
1
<
len
(
self
.
layers
):
self
.
layerindex
+=
1
self
.
layerindex
+=
1
# Display layer info on statusbar (Jezmy)
self
.
parent
.
SetStatusText
(
"Layer
%
d - Going Up - Z =
%.03
f mm"
%
(
self
.
layerindex
+
1
,
self
.
layers
[
self
.
layerindex
]),
0
)
self
.
parent
.
SetStatusText
(
"Layer "
+
str
(
self
.
layerindex
+
1
)
+
" - Going Up - Z = "
+
str
(
self
.
layers
[
self
.
layerindex
])
+
" mm"
,
0
)
self
.
dirty
=
1
self
.
dirty
=
1
wx
.
CallAfter
(
self
.
Refresh
)
wx
.
CallAfter
(
self
.
Refresh
)
def
layerdown
(
self
):
def
layerdown
(
self
):
if
(
self
.
layerindex
>
0
)
:
if
self
.
layerindex
>
0
:
self
.
layerindex
-=
1
self
.
layerindex
-=
1
# Display layer info on statusbar (Jezmy)
# 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
.
parent
.
SetStatusText
(
"Layer
%
d - Going Down - Z =
%.03
f mm"
%
(
self
.
layerindex
+
1
,
self
.
layers
[
self
.
layerindex
])
,
0
)
self
.
dirty
=
1
self
.
dirty
=
1
wx
.
CallAfter
(
self
.
Refresh
)
wx
.
CallAfter
(
self
.
Refresh
)
def
setlayer
(
self
,
layer
):
def
setlayer
(
self
,
layer
):
try
:
if
layer
in
self
.
layers
:
self
.
layerindex
=
self
.
layers
.
index
(
layer
)
self
.
layerindex
=
self
.
layers
.
index
(
layer
)
self
.
dirty
=
1
self
.
dirty
=
1
wx
.
CallAfter
(
self
.
Refresh
)
self
.
showall
=
0
self
.
showall
=
0
except
:
wx
.
CallAfter
(
self
.
Refresh
)
pass
def
update_basescale
(
self
):
def
update_basescale
(
self
):
self
.
basescale
=
2
*
[
min
(
float
(
self
.
size
[
0
]
-
1
)
/
self
.
build_dimensions
[
0
],
self
.
basescale
=
2
*
[
min
(
float
(
self
.
size
[
0
]
-
1
)
/
self
.
build_dimensions
[
0
],
...
...
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