Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-09-19 09:11:32 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-09-19 09:11:32 +0400
commit1c8d9cc4a923c0b0d8cc5f2ec10347b1db3b789c (patch)
tree31464c650e08593b9e7168ea553a3ae58448ed16 /release/scripts/freestyle
parent64ade99ecc0e9bd10332c90ae0f49cbc942443a7 (diff)
Freestyle: Fix for irrelevant docstring showing up in Python API docs.
Diffstat (limited to 'release/scripts/freestyle')
-rw-r--r--release/scripts/freestyle/modules/freestyle/shaders.py6
1 files changed, 2 insertions, 4 deletions
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):