fix docstring

pull/8/head
derVedro 2017-02-20 14:44:30 +01:00 committed by GitHub
parent 1622d01d05
commit 7da72db7d5
1 changed files with 2 additions and 2 deletions

View File

@ -472,7 +472,7 @@ class Line(object):
self.unit_tangent(0), previous.unit_tangent(1))
def point(self, t):
"""returns the coordinates of the Bezier curve evaluated at t."""
"""returns the coordinates of the line evaluated at t."""
distance = self.end - self.start
return self.start + distance*t
@ -488,7 +488,7 @@ class Line(object):
min_depth=min_depth)
def bpoints(self):
"""returns the Bezier control points of the segment."""
"""returns the control points of the segment."""
return self.start, self.end
def poly(self, return_coeffs=False):