Blender Git Commit Log
Git Commits -> Revision 4a92d82
Revision 4a92d82 by Tamito Kajiyama (master) March 7, 2013, 23:17 (GMT) |
A big code clean-up patch from Bastien Montagne, many thanks! |
Commit Details:
Full Hash: 4a92d82626980d6d1690113b9d27aae282fd48eb
SVN Revision: 55102
Parent Commit: b4b2269
Lines Changed: +986, -798
221 Modified Paths:
/source/blender/freestyle/FRS_freestyle.h (+7, -7) (Diff)
/source/blender/freestyle/intern/application/AppCanvas.cpp (+11, -11) (Diff)
/source/blender/freestyle/intern/application/AppCanvas.h (+3, -3) (Diff)
/source/blender/freestyle/intern/application/AppConfig.cpp (+6, -7) (Diff)
/source/blender/freestyle/intern/application/AppConfig.h (+2, -2) (Diff)
/source/blender/freestyle/intern/application/AppView.h (+3, -3) (Diff)
/source/blender/freestyle/intern/application/Controller.cpp (+12, -13) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.cpp (+26, -29) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStrokeRenderer.cpp (+18, -20) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStyleModule.h (+1, -1) (Diff)
/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp (+36, -35) (Diff)
/source/blender/freestyle/intern/geometry/Bezier.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/FitCurve.cpp (+16, -16) (Diff)
/source/blender/freestyle/intern/geometry/GeomCleaner.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.cpp (+10, -7) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/Grid.cpp (+6, -5) (Diff)
/source/blender/freestyle/intern/geometry/Grid.h (+11, -11) (Diff)
/source/blender/freestyle/intern/geometry/GridHelpers.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.h (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/normal_cycle.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/geometry/Polygon.h (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/SweepLine.h (+31, -31) (Diff)
/source/blender/freestyle/intern/geometry/VecMat.h (+5, -4) (Diff)
/source/blender/freestyle/intern/image/GaussianFilter.h (+2, -1) (Diff)
/source/blender/freestyle/intern/image/Image.h (+1, -1) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.h (+5, -5) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_FalseBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_Length2DBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_SameShapeIdBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_TrueBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BBox.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate0D.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate1D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_ContextFunctions.cpp (+22, -12) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.cpp (+25, -25) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.h (+21, -19) (Diff)
/source/blender/freestyle/intern/python/BPy_Freestyle.cpp (+6, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsMaterial.cpp (+15, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsNoise.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface0D.cpp (+9, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface1D.cpp (+5, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_Iterator.cpp (+7, -7) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.cpp (+53, -34) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp (+34, -23) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeShader.cpp (+5, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction0D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate0D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate1D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewMap.cpp (+12, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.cpp (+17, -13) (Diff)
/source/blender/freestyle/intern/python/Director.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp (+6, -3) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_SVertex.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_ViewVertex.cpp (+7, -5) (Diff)
/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp (+9, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_TVertex.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp (+8, -4) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp (+9, -6) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp (+24, -21) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp (+21, -14) (Diff)
/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp (+7, -5) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp (+22, -12) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp (+8, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.cpp (+10, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.cpp (+9, -5) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BezierCurveShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_CalligraphicShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantColorShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_fstreamShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_GuidingLinesShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingColorShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SamplingShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SpatialNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_streamShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_StrokeTextureShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TextureAssignerShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TipRemoverShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp (+6, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp (+10, -7) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_Curvature2DAngleF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_DensityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedXF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedYF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedZF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetXF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetYF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetZF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_LocalAverageDepthF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_ZDiscontinuityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetCurvilinearAbscissaF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetCurvilinearAbscissaF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetParameterF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetViewMapGradientNormF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetViewMapGradientNormF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadCompleteViewMapPixelF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadCompleteViewMapPixelF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadMapPixelF0D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Id/BPy_ShapeIdF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Material/BPy_MaterialF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Nature_EdgeNature/BPy_CurveNatureF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_unsigned_int/BPy_QuantitativeInvisibilityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_unsigned_int/BPy_QuantitativeInvisibilityF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_Normal2DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_vector_ViewShape/BPy_GetOccludersF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetOccludeeF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetShapeF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.cpp (+8, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec3f.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp (+14, -9) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVoid.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_Curvature2DAngleF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_DensityF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetCompleteViewMapDensityF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetCompleteViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetDirectionalViewMapDensityF1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetDirectionalViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedXF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedYF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedZF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetSteerableViewMapDensityF1D.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetSteerableViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetViewMapGradientNormF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetViewMapGradientNormF1D.h (+3, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetXF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetYF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetZF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_LocalAverageDepthF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_ZDiscontinuityF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_unsigned_int/BPy_QuantitativeInvisibilityF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_unsigned_int/BPy_QuantitativeInvisibilityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Normal2DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Orientation2DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec3f/BPy_Orientation3DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludeeF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludersF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetShapeF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_ChainingTimeStampF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_TimeStampF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_FalseUP0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_TrueUP0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ContourUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_DensityLowerThanUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToTimeStampUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ExternalContourUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_FalseUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_TrueUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/application/AppCanvas.cpp (+11, -11) (Diff)
/source/blender/freestyle/intern/application/AppCanvas.h (+3, -3) (Diff)
/source/blender/freestyle/intern/application/AppConfig.cpp (+6, -7) (Diff)
/source/blender/freestyle/intern/application/AppConfig.h (+2, -2) (Diff)
/source/blender/freestyle/intern/application/AppView.h (+3, -3) (Diff)
/source/blender/freestyle/intern/application/Controller.cpp (+12, -13) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.cpp (+26, -29) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderFileLoader.h (+1, -1) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStrokeRenderer.cpp (+18, -20) (Diff)
/source/blender/freestyle/intern/blender_interface/BlenderStyleModule.h (+1, -1) (Diff)
/source/blender/freestyle/intern/blender_interface/FRS_freestyle.cpp (+36, -35) (Diff)
/source/blender/freestyle/intern/geometry/Bezier.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/FastGrid.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/FitCurve.cpp (+16, -16) (Diff)
/source/blender/freestyle/intern/geometry/GeomCleaner.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.cpp (+10, -7) (Diff)
/source/blender/freestyle/intern/geometry/GeomUtils.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/Grid.cpp (+6, -5) (Diff)
/source/blender/freestyle/intern/geometry/Grid.h (+11, -11) (Diff)
/source/blender/freestyle/intern/geometry/GridHelpers.h (+1, -1) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/HashGrid.h (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/normal_cycle.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/geometry/Polygon.h (+2, -2) (Diff)
/source/blender/freestyle/intern/geometry/SweepLine.h (+31, -31) (Diff)
/source/blender/freestyle/intern/geometry/VecMat.h (+5, -4) (Diff)
/source/blender/freestyle/intern/image/GaussianFilter.h (+2, -1) (Diff)
/source/blender/freestyle/intern/image/Image.h (+1, -1) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/image/ImagePyramid.h (+5, -5) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_FalseBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_Length2DBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_SameShapeIdBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_TrueBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/BinaryPredicate1D/BPy_ViewMapGradientNormBP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/BPy_BBox.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate0D.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/BPy_BinaryPredicate1D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_ContextFunctions.cpp (+22, -12) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.cpp (+25, -25) (Diff)
/source/blender/freestyle/intern/python/BPy_Convert.h (+21, -19) (Diff)
/source/blender/freestyle/intern/python/BPy_Freestyle.cpp (+6, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsMaterial.cpp (+15, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_FrsNoise.cpp (+9, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_Id.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface0D.cpp (+9, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_Interface1D.cpp (+5, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_Iterator.cpp (+7, -7) (Diff)
/source/blender/freestyle/intern/python/BPy_Operators.cpp (+53, -34) (Diff)
/source/blender/freestyle/intern/python/BPy_SShape.cpp (+6, -6) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeAttribute.cpp (+34, -23) (Diff)
/source/blender/freestyle/intern/python/BPy_StrokeShader.cpp (+5, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction0D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryFunction1D.cpp (+3, -3) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate0D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_UnaryPredicate1D.cpp (+4, -4) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewMap.cpp (+12, -9) (Diff)
/source/blender/freestyle/intern/python/BPy_ViewShape.cpp (+17, -13) (Diff)
/source/blender/freestyle/intern/python/Director.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_CurvePoint.cpp (+6, -3) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_SVertex.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/BPy_ViewVertex.cpp (+7, -5) (Diff)
/source/blender/freestyle/intern/python/Interface0D/CurvePoint/BPy_StrokeVertex.cpp (+9, -4) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_NonTVertex.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Interface0D/ViewVertex/BPy_TVertex.cpp (+6, -4) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FEdge.cpp (+8, -4) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_FrsCurve.cpp (+9, -6) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_Stroke.cpp (+24, -21) (Diff)
/source/blender/freestyle/intern/python/Interface1D/BPy_ViewEdge.cpp (+21, -14) (Diff)
/source/blender/freestyle/intern/python/Interface1D/Curve/BPy_Chain.cpp (+7, -5) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSharp.cpp (+22, -12) (Diff)
/source/blender/freestyle/intern/python/Interface1D/FEdge/BPy_FEdgeSmooth.cpp (+8, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_AdjacencyIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainingIterator.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.cpp (+10, -5) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainPredicateIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ChainSilhouetteIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_CurvePointIterator.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_Interface0DIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_orientedViewEdgeIterator.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_StrokeVertexIterator.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/Iterator/BPy_ViewEdgeIterator.cpp (+9, -5) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BackboneStretcherShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_BezierCurveShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_CalligraphicShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ColorVariationPatternShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantColorShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstantThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ConstrainedIncreasingThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_fstreamShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_GuidingLinesShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingColorShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_IncreasingThicknessShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_PolygonalizationShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SamplingShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SmoothingShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_SpatialNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_streamShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_StrokeTextureShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TextureAssignerShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessNoiseShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_ThicknessVariationPatternShader.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/StrokeShader/BPy_TipRemoverShader.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DDouble.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.cpp (+6, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DEdgeNature.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DFloat.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DId.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DMaterial.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DUnsigned.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec2f.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVec3f.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.cpp (+10, -7) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DVectorViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.cpp (+5, -5) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/BPy_UnaryFunction0DViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_Curvature2DAngleF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_DensityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedXF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedYF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetProjectedZF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetXF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetYF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_GetZF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_LocalAverageDepthF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_double/BPy_ZDiscontinuityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetCurvilinearAbscissaF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetCurvilinearAbscissaF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetParameterF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetViewMapGradientNormF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_GetViewMapGradientNormF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadCompleteViewMapPixelF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadCompleteViewMapPixelF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadMapPixelF0D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_float/BPy_ReadSteerableViewMapPixelF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Id/BPy_ShapeIdF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Material/BPy_MaterialF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Nature_EdgeNature/BPy_CurveNatureF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_unsigned_int/BPy_QuantitativeInvisibilityF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_unsigned_int/BPy_QuantitativeInvisibilityF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_Normal2DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec2f/BPy_VertexOrientation2DF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_Vec3f/BPy_VertexOrientation3DF0D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_vector_ViewShape/BPy_GetOccludersF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetOccludeeF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction0D/UnaryFunction0D_ViewShape/BPy_GetShapeF0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DDouble.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.cpp (+8, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DEdgeNature.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DFloat.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DUnsigned.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec2f.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVec3f.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.cpp (+14, -9) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVectorViewShape.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/BPy_UnaryFunction1DVoid.cpp (+7, -6) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_Curvature2DAngleF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_DensityF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetCompleteViewMapDensityF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetCompleteViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetDirectionalViewMapDensityF1D.cpp (+4, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetDirectionalViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedXF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedYF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetProjectedZF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetSteerableViewMapDensityF1D.cpp (+3, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetSteerableViewMapDensityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetViewMapGradientNormF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetViewMapGradientNormF1D.h (+3, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetXF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetYF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_GetZF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_LocalAverageDepthF1D.cpp (+2, -2) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_double/BPy_ZDiscontinuityF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Nature_EdgeNature/BPy_CurveNatureF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_unsigned_int/BPy_QuantitativeInvisibilityF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_unsigned_int/BPy_QuantitativeInvisibilityF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Normal2DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec2f/BPy_Orientation2DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_Vec3f/BPy_Orientation3DF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludeeF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetOccludersF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_vector_ViewShape/BPy_GetShapeF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_ChainingTimeStampF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.cpp (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_IncrementChainingTimeStampF1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryFunction1D/UnaryFunction1D_void/BPy_TimeStampF1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_FalseUP0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate0D/BPy_TrueUP0D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ContourUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_DensityLowerThanUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToChainingTimeStampUP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_EqualToTimeStampUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ExternalContourUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_FalseUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_QuantitativeInvisibilityUP1D.h (+2, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_ShapeUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_TrueUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.cpp (+1, -1) (Diff)
/source/blender/freestyle/intern/python/UnaryPredicate1D/BPy_WithinImageBoundaryUP1D.h (+2, -1) (Diff)