mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
No! G90 does not command absolute extrusion, M82 does that.
This commit is contained in:
parent
56e80bb518
commit
c4a9c38c33
1 changed files with 2 additions and 2 deletions
|
@ -18,10 +18,10 @@ class RepRapFlavorParser(FlavorParser.FlavorParser):
|
||||||
self._is_absolute_extrusion = False
|
self._is_absolute_extrusion = False
|
||||||
|
|
||||||
## Set the absolute positioning
|
## Set the absolute positioning
|
||||||
# RepRapFlavor code G90 sets position of X, Y, Z, and E to absolute
|
# RepRapFlavor code G90 sets position of X, Y, Z to absolute
|
||||||
|
# For absolute E, M82 is used
|
||||||
def _gCode90(self, position, params, path):
|
def _gCode90(self, position, params, path):
|
||||||
self._is_absolute_positioning = True
|
self._is_absolute_positioning = True
|
||||||
self._is_absolute_extrusion = True
|
|
||||||
return position
|
return position
|
||||||
|
|
||||||
## Set the relative positioning
|
## Set the relative positioning
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue