Converted comments in dir Cura/cura/Arranging to rst style

Converted doxygen style comments to reStructuredText style in the files found in Cura/cura/Arranging directory recursively  using the script dox_2_rst.py (provided in the Uranium repo). Comments were manually checked and changed if needed.

Various missing return types were added to complete Typing support
This commit is contained in:
Jelle Spijker 2020-04-22 21:42:09 +02:00 committed by Jelle Spijker
parent 68318d20fd
commit 9b44ca37ef
No known key found for this signature in database
GPG key ID: 6662DC033BE6B99A
3 changed files with 88 additions and 64 deletions

View file

@ -18,8 +18,9 @@ from cura.Arranging.ShapeArray import ShapeArray
from typing import List
## Do arrangements on multiple build plates (aka builtiplexer)
class ArrangeArray:
"""Do arrangements on multiple build plates (aka builtiplexer)"""
def __init__(self, x: int, y: int, fixed_nodes: List[SceneNode]) -> None:
self._x = x
self._y = y