Freestyle: Fix for irrelevant docstring showing up in Python API docs.

This commit is contained in:
Tamito Kajiyama 2014-09-19 14:11:32 +09:00
parent 64ade99ecc
commit 1c8d9cc4a9

@ -741,10 +741,8 @@ class pyTipRemoverShader(StrokeShader):
@staticmethod
def check_vertex(v, length):
"""
Returns True if the given strokevertex is less than self._l away
from the stroke's tip and therefore should be removed.
"""
# Returns True if the given strokevertex is less than self._l away
# from the stroke's tip and therefore should be removed.
return (v.curvilinear_abscissa < length or v.stroke_length-v.curvilinear_abscissa < length)
def shade(self, stroke):