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:
Diffstat (limited to 'source/blender/freestyle/style_modules/anisotropic_diffusion.py')
-rwxr-xr-xsource/blender/freestyle/style_modules/anisotropic_diffusion.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/freestyle/style_modules/anisotropic_diffusion.py b/source/blender/freestyle/style_modules/anisotropic_diffusion.py
index f8b68ee51a6..688554dc92e 100755
--- a/source/blender/freestyle/style_modules/anisotropic_diffusion.py
+++ b/source/blender/freestyle/style_modules/anisotropic_diffusion.py
@@ -55,7 +55,7 @@ class pyDiffusion2Shader(StrokeShader):
v=it.getObject()
p1 = v.getPoint()
p2 = normalInfo(it.castToInterface0DIterator())*self._lambda*curvatureInfo(it.castToInterface0DIterator())
- v.SetPoint(p1+p2)
+ v.setPoint(p1+p2)
it.increment()
upred = AndUP1D(QuantitativeInvisibilityUP1D(0), ExternalContourUP1D())