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
4b04d190
Commit
4b04d190
authored
Nov 05, 2013
by
Guillaume Seguin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make a property for home_pos in GCoder
parent
87c79d6b
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
2 deletions
+9
-2
gcoder.py
printrun/gcoder.py
+9
-2
No files found.
printrun/gcoder.py
View file @
4b04d190
...
...
@@ -166,12 +166,19 @@ class GCode(object):
return
self
.
current_e
-
self
.
offset_e
abs_e
=
property
(
_get_abs_e
)
def
_get_home_pos
(
self
):
return
(
self
.
home_x
,
self
.
home_y
,
self
.
home_z
)
def
_set_home_pos
(
self
,
home_pos
):
if
home_pos
:
self
.
home_x
,
self
.
home_y
,
self
.
home_z
=
home_pos
home_pos
=
property
(
_get_home_pos
,
_set_home_pos
)
def
__init__
(
self
,
data
,
home_pos
=
None
):
self
.
lines
=
[
Line
(
l2
)
for
l2
in
(
l
.
strip
()
for
l
in
data
)
if
l2
]
if
home_pos
:
self
.
home_x
,
self
.
home_y
,
self
.
home_z
=
home_pos
self
.
home_pos
=
home_pos
if
self
.
lines
:
self
.
_preprocess_lines
()
self
.
filament_length
=
self
.
_preprocess_extrusion
()
...
...
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