Adds the voronoi module and demo

This commit is contained in:
Johann Dreo 2014-05-13 15:27:25 +02:00
commit ca985518b0
3 changed files with 144 additions and 18 deletions

View file

@ -39,7 +39,8 @@ def scatter_segments( ax, segments, **kwargs ):
def scatter_points( ax, points, **kwargs ):
x = [i[0] for i in points]
y = [i[1] for i in points]
ax.scatter( x,y, s=20, marker='o', **kwargs)
# ax.scatter( x,y, s=20, marker='o', **kwargs)
ax.scatter( x,y, marker='o', **kwargs)
if __name__=="__main__":