docstring

This commit is contained in:
François Boulogne
2013-05-28 07:56:12 +02:00
parent 00524a3d86
commit e2dbc48e5d
2 changed files with 6 additions and 5 deletions
-4
View File
@@ -56,9 +56,5 @@ img[rr, cc, :] = (0, 0, 255)
rr, cc = ellipse_perimeter(120, 400, 60, 20, orientation=math.pi/2.)
img[rr, cc, :] = (255, 255, 255)
# bezier curve
rr, cc = bezier_curve(120, 400, 150, 480, 160, 400, weight=2)
img[rr, cc, :] = (255, 255, 255)
plt.imshow(img)
plt.show()