mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-12 13:59:02 +08:00
Fix crash on layer polygon
This commit is contained in:
parent
8f2dc5c6e0
commit
0fcbcf6a5f
@ -42,11 +42,11 @@ class LayerPolygon:
|
|||||||
|
|
||||||
self._extruder = extruder
|
self._extruder = extruder
|
||||||
self._types = line_types
|
self._types = line_types
|
||||||
unknown_types = np.where(self_types >= self_number_of_types)
|
unknown_types = numpy.where(self._types >= self.__number_of_types)
|
||||||
if unknown_types:
|
if unknown_types:
|
||||||
# Got faulty line data from the engine.
|
# Got faulty line data from the engine.
|
||||||
for idx in unknown_types:
|
for idx in unknown_types:
|
||||||
Logger.warn(f"Found an unknown line type at: {idx}")
|
Logger.warning(f"Found an unknown line type at: {idx}")
|
||||||
self._types[idx] = self.NoneType
|
self._types[idx] = self.NoneType
|
||||||
self._data = data
|
self._data = data
|
||||||
self._line_widths = line_widths
|
self._line_widths = line_widths
|
||||||
|
Loading…
x
Reference in New Issue
Block a user