mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-24 07:03:56 -06:00
D6: Fixed multi-extrusion
This commit is contained in:
parent
485e81731f
commit
f8874bfe21
1 changed files with 5 additions and 2 deletions
|
@ -177,12 +177,15 @@ class GCodeReader(MeshReader):
|
||||||
|
|
||||||
def _processTCode(self, T, line, position, path):
|
def _processTCode(self, T, line, position, path):
|
||||||
self._extruder = T
|
self._extruder = T
|
||||||
|
if self._extruder + 1 > len(position.e):
|
||||||
|
position.e.extend([0] * (self._extruder - len(position.e) + 1))
|
||||||
if len(path) > 1 and position[2] > 0:
|
if len(path) > 1 and position[2] > 0:
|
||||||
if self._createPolygon(position[2], path):
|
if self._createPolygon(position[2], path):
|
||||||
self._layer += 1
|
self._layer += 1
|
||||||
path.clear()
|
path.clear()
|
||||||
else:
|
else:
|
||||||
path.clear()
|
path.clear()
|
||||||
|
return position
|
||||||
|
|
||||||
_type_keyword = ";TYPE:"
|
_type_keyword = ";TYPE:"
|
||||||
|
|
||||||
|
@ -216,7 +219,7 @@ class GCodeReader(MeshReader):
|
||||||
|
|
||||||
Logger.log("d", "Parsing %s" % file_name)
|
Logger.log("d", "Parsing %s" % file_name)
|
||||||
|
|
||||||
current_position = self._position(0, 0, 0, [0, 0])
|
current_position = self._position(0, 0, 0, [0])
|
||||||
current_path = []
|
current_path = []
|
||||||
|
|
||||||
for line in file:
|
for line in file:
|
||||||
|
@ -250,7 +253,7 @@ class GCodeReader(MeshReader):
|
||||||
current_position = self._processGCode(G, line, current_position, current_path)
|
current_position = self._processGCode(G, line, current_position, current_path)
|
||||||
T = self._getInt(line, "T")
|
T = self._getInt(line, "T")
|
||||||
if T is not None:
|
if T is not None:
|
||||||
self._processTCode(T, line, current_position, current_path)
|
current_position = self._processTCode(T, line, current_position, current_path)
|
||||||
|
|
||||||
if len(current_path) > 1 and current_position[2] > 0:
|
if len(current_path) > 1 and current_position[2] > 0:
|
||||||
if self._createPolygon(current_position[2], current_path):
|
if self._createPolygon(current_position[2], current_path):
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue