Move tour, LOG and LOGN in utils, add vertices_from_set

This commit is contained in:
Johann Dreo 2014-03-25 20:58:52 +01:00
commit dd1fe6569e
3 changed files with 34 additions and 23 deletions

View file

@ -28,11 +28,11 @@ def plot_segments( ax, segments, **kwargs ):
ax.add_patch(patch)
def scatter_segments( ax, segments, color="black", alpha=1.0, linewidth=1.0 ):
def scatter_segments( ax, segments, **kwargs ):
xy = [ ((i[0],j[0]),(i[1],j[1])) for (i,j) in segments]
x = [i[0] for i in xy]
y = [i[1] for i in xy]
ax.scatter( x,y, s=20, marker='o', color=color, alpha=alpha, linewidth=linewidth)
ax.scatter( x,y, s=20, marker='o', **kwargs)
if __name__=="__main__":