mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-13 09:47:50 -06:00
Removed print statements from unit test
This commit is contained in:
parent
a02eacd8bc
commit
740b5ebc80
1 changed files with 0 additions and 6 deletions
|
@ -100,16 +100,10 @@ def test_smoke_place_objects():
|
||||||
ar = Arrange(20, 20, 10, 10)
|
ar = Arrange(20, 20, 10, 10)
|
||||||
ar.centerFirst()
|
ar.centerFirst()
|
||||||
shape_arr = gimmeShapeArray()
|
shape_arr = gimmeShapeArray()
|
||||||
print(shape_arr)
|
|
||||||
|
|
||||||
now = time.time()
|
|
||||||
for i in range(5):
|
for i in range(5):
|
||||||
best_spot_x, best_spot_y, score, prio = ar.bestSpot(shape_arr)
|
best_spot_x, best_spot_y, score, prio = ar.bestSpot(shape_arr)
|
||||||
print(best_spot_x, best_spot_y, score)
|
|
||||||
ar.place(best_spot_x, best_spot_y, shape_arr)
|
ar.place(best_spot_x, best_spot_y, shape_arr)
|
||||||
print(ar._occupied)
|
|
||||||
|
|
||||||
print(time.time() - now)
|
|
||||||
|
|
||||||
|
|
||||||
## Polygon -> array
|
## Polygon -> array
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue