mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-07 05:53:59 -06:00
Removed unused option in LayerPolygon, added comments
This commit is contained in:
parent
6c19bc1c16
commit
50ba236e66
3 changed files with 15 additions and 7 deletions
|
@ -19,10 +19,13 @@ class LayerPolygon:
|
|||
|
||||
__jump_map = numpy.logical_or(numpy.logical_or(numpy.arange(11) == NoneType, numpy.arange(11) == MoveCombingType), numpy.arange(11) == MoveRetractionType)
|
||||
|
||||
## LayerPolygon
|
||||
# line_thicknesses: array with type as index and thickness as value
|
||||
def __init__(self, mesh, extruder, line_types, data, line_widths, line_thicknesses):
|
||||
self._mesh = mesh
|
||||
## LayerPolygon, used in ProcessSlicedLayersJob
|
||||
# \param extruder
|
||||
# \param line_types array with line_types
|
||||
# \param data new_points
|
||||
# \param line_widths array with line widths
|
||||
# \param line_thicknesses: array with type as index and thickness as value
|
||||
def __init__(self, extruder, line_types, data, line_widths, line_thicknesses):
|
||||
self._extruder = extruder
|
||||
self._types = line_types
|
||||
self._data = data
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue