From 1ed107ba4b7b649c64309b8b27a807fa4b6fab98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Laura=20Kl=C3=BCnder?= Date: Thu, 8 Dec 2016 18:21:55 +0100 Subject: [PATCH] remove debug output --- src/c3nav/routing/room.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/c3nav/routing/room.py b/src/c3nav/routing/room.py index 57f1d7ad..9b0761df 100644 --- a/src/c3nav/routing/room.py +++ b/src/c3nav/routing/room.py @@ -82,13 +82,10 @@ class GraphRoom(): stairs_areas = assert_multipolygon(stairs_areas.intersection(self.geometry)) for polygon in stairs_areas: for ring in (polygon.exterior, )+tuple(polygon.interiors): - print('#') for linestring in assert_multilinestring(ring.intersection(self.clear_geometry)): - print(' -') coords = tuple(linestring.coords) start = 1 for segment in zip(coords[:-1], coords[1:]): - print(' .') path = Path(segment) length = abs(np.linalg.norm(path.vertices[0] - path.vertices[1])) for coord in tuple(path.interpolated(max(int(length / 1.0), 1)).vertices)[start:-1]: