From 1c8d9cc4a923c0b0d8cc5f2ec10347b1db3b789c Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Fri, 19 Sep 2014 14:11:32 +0900 Subject: Freestyle: Fix for irrelevant docstring showing up in Python API docs. --- release/scripts/freestyle/modules/freestyle/shaders.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'release/scripts/freestyle') diff --git a/release/scripts/freestyle/modules/freestyle/shaders.py b/release/scripts/freestyle/modules/freestyle/shaders.py index 108f5684bba..508df7feca0 100644 --- a/release/scripts/freestyle/modules/freestyle/shaders.py +++ b/release/scripts/freestyle/modules/freestyle/shaders.py @@ -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): -- cgit v1.2.3