STY: Remove linewidth parameter to simplify API

This commit is contained in:
Tony S Yu
2012-12-13 20:56:27 -05:00
parent 3fab96fb09
commit e5dfb8c7ac
+1 -3
View File
@@ -18,8 +18,6 @@ class LineProfile(PlotPlugin):
Parameters
----------
linewidth : float
Line width for interpolation. Wider lines average over more pixels.
maxdist : float
Maximum pixel distance allowed when selecting end point of scan line.
epsilon : float
@@ -34,7 +32,7 @@ class LineProfile(PlotPlugin):
"""
name = 'Line Profile'
def __init__(self, linewidth=1, maxdist=10, epsilon='deprecated',
def __init__(self, maxdist=10, epsilon='deprecated',
limits='image', **kwargs):
super(LineProfile, self).__init__(**kwargs)