Skip to content
Snippets Groups Projects
Commit 7a28eb7d authored by spmohanty's avatar spmohanty
Browse files

Remove redundant debug messages

parent 855f7d27
No related branches found
No related tags found
No related merge requests found
......@@ -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):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment