diff --git a/flatland/utils/graphics_pil.py b/flatland/utils/graphics_pil.py index 947f19cc75840b7a10acedea7ea8cd49a9bebd58..ab974011c628eac3402022d231ba518db50f9402 100644 --- a/flatland/utils/graphics_pil.py +++ b/flatland/utils/graphics_pil.py @@ -106,7 +106,6 @@ class PILGL(GraphicsLayer): return self.ltAgentColors[iAgent % self.nAgentColors] def plot(self, gX, gY, color=None, linewidth=3, layer=0, opacity=255, **kwargs): - print("Plotting ", gX, gY) color = self.adaptColor(color) if len(color) == 3: color += (opacity,) @@ -114,7 +113,6 @@ class PILGL(GraphicsLayer): color = color[:3] + (opacity,) gPoints = np.stack([array(gX), -array(gY)]).T * self.nPixCell gPoints = list(gPoints.ravel()) - print(self.draws) self.draws[layer].line(gPoints, fill=color, width=self.linewidth) def scatter(self, gX, gY, color=None, marker="o", s=50, layer=0, opacity=255, *args, **kwargs):