mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Use 2 leading spaces for doxygen documentation
CURA-6785
This commit is contained in:
parent
9512030060
commit
1b1029a3e0
1 changed files with 2 additions and 2 deletions
|
@ -66,7 +66,7 @@ class OneAtATimeIterator(Iterator.Iterator):
|
|||
self._node_stack = [] #No result found!
|
||||
|
||||
|
||||
# Check if first object can be printed before the provided list (using the hit map)
|
||||
# Check if first object can be printed before the provided list (using the hit map)
|
||||
def _checkHitMultiple(self, node: SceneNode, other_nodes: List[SceneNode]) -> bool:
|
||||
node_index = self._original_node_list.index(node)
|
||||
for other_node in other_nodes:
|
||||
|
@ -92,7 +92,7 @@ class OneAtATimeIterator(Iterator.Iterator):
|
|||
score_b = sum(self._hit_map[self._original_node_list.index(b)])
|
||||
return score_a - score_b
|
||||
|
||||
## Checks if A can be printed before B
|
||||
## Checks if A can be printed before B
|
||||
def _checkHit(self, a: SceneNode, b: SceneNode) -> bool:
|
||||
if a == b:
|
||||
return False
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue