Blender Git Commit Log

Git Commits -> Revision 68b0a8e

Revision 68b0a8e by Tamito Kajiyama (master)
February 23, 2013, 01:12 (GMT)
Freestyle Python API improvements - part 7.

Fix for PyGetSetDef and proper handling of keyword arguments were done in
UnaryPredicate0D, UnaryPredicate1D, BinaryPredicate1D, and StrokeShader classes.
Style modules were updated accordingly. Additional code clean-up was also made.

Commit Details:

Full Hash: 68b0a8e39026ea2b391751406dc4bdb0a4ed958c
SVN Revision: 54771
Parent Commit: 0fb83d7
Lines Changed: +652, -613

51 Modified Paths:

/release/scripts/freestyle/style_modules/anisotropic_diffusion.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/curvature2d.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/sketchy_multiple_parameterization.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/sketchy_topology_broken.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/sketchy_topology_preserved.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/stroke_texture.py (+1, -1) (Diff)
/release/scripts/freestyle/style_modules/uniformpruning_zsort.py (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_FalseBP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_Length2DBP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_SameShapeIdBP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_TrueBP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.cpp (+22, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate0D.cpp (+37, -41) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate1D.cpp (+49, -50) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeShader.cpp (+87, -82) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate0D.cpp (+41, -47) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate1D.cpp (+57, -67) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BezierCurveShader.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_CalligraphicShader.cpp (+26, -24) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.cpp (+11, -11) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantColorShader.cpp (+15, -15) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.cpp (+13, -13) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_fstreamShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_GuidingLinesShader.cpp (+10, -10) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingColorShader.cpp (+24, -23) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.cpp (+11, -11) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SamplingShader.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp (+33, -25) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SpatialNoiseShader.cpp (+20, -17) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_streamShader.cpp (+7, -5) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_StrokeTextureShader.cpp (+20, -18) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TextureAssignerShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessNoiseShader.cpp (+12, -12) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.cpp (+13, -13) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TipRemoverShader.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_FalseUP0D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_TrueUP0D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ContourUP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_DensityLowerThanUP1D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToTimeStampUP1D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ExternalContourUP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_FalseUP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_TrueUP1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.cpp (+3, -2) (Diff)
By: Miika HämäläinenLast update: Nov-07-2014 14:18MiikaHweb | 2003-2021