mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-06 22:47:29 -06:00
T466: Fixed show only top layers bug
This commit is contained in:
parent
2948e99fe8
commit
ce9251b5a6
2 changed files with 2 additions and 2 deletions
|
@ -99,7 +99,7 @@ class GCodeReader(MeshReader):
|
|||
count = len(path)
|
||||
line_types = numpy.empty((count - 1, 1), numpy.int32)
|
||||
line_types[:, 0] = 1
|
||||
line_widths = numpy.empty((count - 1, 1), numpy.int32)
|
||||
line_widths = numpy.empty((count - 1, 1), numpy.float32)
|
||||
line_widths[:, 0] = 0.5
|
||||
points = numpy.empty((count, 3), numpy.float32)
|
||||
i = 0
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue