[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [55877] trunk/blender: use lowercase name for freestyle module (as with all other blender modules ).

Campbell Barton ideasman42 at gmail.com
Sun Apr 7 13:22:55 CEST 2013


Revision: 55877
          http://projects.blender.org/scm/viewvc.php?view=rev&root=bf-blender&revision=55877
Author:   campbellbarton
Date:     2013-04-07 11:22:54 +0000 (Sun, 07 Apr 2013)
Log Message:
-----------
use lowercase name for freestyle module (as with all other blender modules).

Modified Paths:
--------------
    trunk/blender/doc/python_api/sphinx_doc_gen.py
    trunk/blender/release/scripts/freestyle/style_modules/ChainingIterators.py
    trunk/blender/release/scripts/freestyle/style_modules/Functions0D.py
    trunk/blender/release/scripts/freestyle/style_modules/Functions1D.py
    trunk/blender/release/scripts/freestyle/style_modules/PredicatesB1D.py
    trunk/blender/release/scripts/freestyle/style_modules/PredicatesU0D.py
    trunk/blender/release/scripts/freestyle/style_modules/PredicatesU1D.py
    trunk/blender/release/scripts/freestyle/style_modules/anisotropic_diffusion.py
    trunk/blender/release/scripts/freestyle/style_modules/apriori_and_causal_density.py
    trunk/blender/release/scripts/freestyle/style_modules/apriori_density.py
    trunk/blender/release/scripts/freestyle/style_modules/backbone_stretcher.py
    trunk/blender/release/scripts/freestyle/style_modules/blueprint_circles.py
    trunk/blender/release/scripts/freestyle/style_modules/blueprint_ellipses.py
    trunk/blender/release/scripts/freestyle/style_modules/blueprint_squares.py
    trunk/blender/release/scripts/freestyle/style_modules/cartoon.py
    trunk/blender/release/scripts/freestyle/style_modules/contour.py
    trunk/blender/release/scripts/freestyle/style_modules/curvature2d.py
    trunk/blender/release/scripts/freestyle/style_modules/external_contour.py
    trunk/blender/release/scripts/freestyle/style_modules/external_contour_sketchy.py
    trunk/blender/release/scripts/freestyle/style_modules/external_contour_smooth.py
    trunk/blender/release/scripts/freestyle/style_modules/haloing.py
    trunk/blender/release/scripts/freestyle/style_modules/ignore_small_occlusions.py
    trunk/blender/release/scripts/freestyle/style_modules/invisible_lines.py
    trunk/blender/release/scripts/freestyle/style_modules/japanese_bigbrush.py
    trunk/blender/release/scripts/freestyle/style_modules/logical_operators.py
    trunk/blender/release/scripts/freestyle/style_modules/long_anisotropically_dense.py
    trunk/blender/release/scripts/freestyle/style_modules/multiple_parameterization.py
    trunk/blender/release/scripts/freestyle/style_modules/nature.py
    trunk/blender/release/scripts/freestyle/style_modules/near_lines.py
    trunk/blender/release/scripts/freestyle/style_modules/occluded_by_specific_object.py
    trunk/blender/release/scripts/freestyle/style_modules/parameter_editor.py
    trunk/blender/release/scripts/freestyle/style_modules/polygonalize.py
    trunk/blender/release/scripts/freestyle/style_modules/qi0.py
    trunk/blender/release/scripts/freestyle/style_modules/qi0_not_external_contour.py
    trunk/blender/release/scripts/freestyle/style_modules/qi1.py
    trunk/blender/release/scripts/freestyle/style_modules/qi2.py
    trunk/blender/release/scripts/freestyle/style_modules/sequentialsplit_sketchy.py
    trunk/blender/release/scripts/freestyle/style_modules/shaders.py
    trunk/blender/release/scripts/freestyle/style_modules/sketchy_multiple_parameterization.py
    trunk/blender/release/scripts/freestyle/style_modules/sketchy_topology_broken.py
    trunk/blender/release/scripts/freestyle/style_modules/sketchy_topology_preserved.py
    trunk/blender/release/scripts/freestyle/style_modules/split_at_highest_2d_curvatures.py
    trunk/blender/release/scripts/freestyle/style_modules/split_at_tvertices.py
    trunk/blender/release/scripts/freestyle/style_modules/stroke_texture.py
    trunk/blender/release/scripts/freestyle/style_modules/suggestive.py
    trunk/blender/release/scripts/freestyle/style_modules/thickness_fof_depth_discontinuity.py
    trunk/blender/release/scripts/freestyle/style_modules/tipremover.py
    trunk/blender/release/scripts/freestyle/style_modules/tvertex_remover.py
    trunk/blender/release/scripts/freestyle/style_modules/uniformpruning_zsort.py
    trunk/blender/source/blender/freestyle/intern/python/BPy_Freestyle.cpp

Modified: trunk/blender/doc/python_api/sphinx_doc_gen.py
===================================================================
--- trunk/blender/doc/python_api/sphinx_doc_gen.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/doc/python_api/sphinx_doc_gen.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -262,7 +262,7 @@
         "mathutils",
         "mathutils.geometry",
         "mathutils.noise",
-        "Freestyle",
+        "freestyle",
         ]
 
     # ------
@@ -1555,7 +1555,7 @@
         # mathutils
         "mathutils", "mathutils.geometry", "mathutils.noise",
         # misc
-        "Freestyle", "bgl", "blf", "gpu", "aud", "bpy_extras",
+        "freestyle", "bgl", "blf", "gpu", "aud", "bpy_extras",
         # bmesh, submodules are in own page
         "bmesh",
         )
@@ -1703,7 +1703,7 @@
         "mathutils"         : "Math Types & Utilities",
         "mathutils.geometry": "Geometry Utilities",
         "mathutils.noise"   : "Noise Utilities",
-        "Freestyle"         : "Freestyle Data Types & Operators",
+        "freestyle"         : "Freestyle Data Types & Operators",
     }
     for mod_name, mod_descr in importable_modules.items():
         if mod_name not in EXCLUDE_MODULES:

Modified: trunk/blender/release/scripts/freestyle/style_modules/ChainingIterators.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/ChainingIterators.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/ChainingIterators.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,8 +21,8 @@
 #  Date     : 04/08/2005
 #  Purpose  : Chaining Iterators to be used with chaining operators
 
-from Freestyle import AdjacencyIterator, ChainingIterator, ExternalContourUP1D, Nature, TVertex
-from Freestyle import ContextFunctions as CF
+from freestyle import AdjacencyIterator, ChainingIterator, ExternalContourUP1D, Nature, TVertex
+from freestyle import ContextFunctions as CF
 
 ## the natural chaining iterator
 ## It follows the edges of same nature following the topology of

Modified: trunk/blender/release/scripts/freestyle/style_modules/Functions0D.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/Functions0D.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/Functions0D.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,10 +21,10 @@
 #  Date     : 30/06/2005
 #  Purpose  : Functions (functors) to be used for 0D elements
 
-from Freestyle import Curvature2DAngleF0D, CurvePoint, ReadCompleteViewMapPixelF0D, \
+from freestyle import Curvature2DAngleF0D, CurvePoint, ReadCompleteViewMapPixelF0D, \
     ReadSteerableViewMapPixelF0D, UnaryFunction0DDouble, UnaryFunction0DMaterial, \
     UnaryFunction0DVec2f
-from Freestyle import ContextFunctions as CF
+from freestyle import ContextFunctions as CF
 
 import math
 import mathutils

Modified: trunk/blender/release/scripts/freestyle/style_modules/Functions1D.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/Functions1D.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/Functions1D.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 08/04/2005
 #  Purpose  : Functions (functors) to be used for 1D elements
 
-from Freestyle import GetProjectedZF1D, IntegrationType, UnaryFunction1DDouble, integrate
+from freestyle import GetProjectedZF1D, IntegrationType, UnaryFunction1DDouble, integrate
 from Functions0D import pyDensityAnisotropyF0D, pyViewMapGradientNormF0D
 import string 
 

Modified: trunk/blender/release/scripts/freestyle/style_modules/PredicatesB1D.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/PredicatesB1D.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/PredicatesB1D.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 08/04/2005
 #  Purpose  : Binary predicates (functors) to be used for 1D elements
 
-from Freestyle import BinaryPredicate1D, GetZF1D, IntegrationType, Nature, SameShapeIdBP1D, ZDiscontinuityF1D
+from freestyle import BinaryPredicate1D, GetZF1D, IntegrationType, Nature, SameShapeIdBP1D, ZDiscontinuityF1D
 from Functions1D import pyViewMapGradientNormF1D
 
 import random

Modified: trunk/blender/release/scripts/freestyle/style_modules/PredicatesU0D.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/PredicatesU0D.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/PredicatesU0D.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 08/04/2005
 #  Purpose  : Unary predicates (functors) to be used for 0D elements
 
-from Freestyle import Curvature2DAngleF0D, Nature, QuantitativeInvisibilityF0D, UnaryPredicate0D
+from freestyle import Curvature2DAngleF0D, Nature, QuantitativeInvisibilityF0D, UnaryPredicate0D
 from Functions0D import pyCurvilinearLengthF0D
 
 class pyHigherCurvature2DAngleUP0D(UnaryPredicate0D):

Modified: trunk/blender/release/scripts/freestyle/style_modules/PredicatesU1D.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/PredicatesU1D.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/PredicatesU1D.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 08/04/2005
 #  Purpose  : Unary predicates (functors) to be used for 1D elements
 
-from Freestyle import Curvature2DAngleF0D, CurveNatureF1D, DensityF1D, GetCompleteViewMapDensityF1D, \
+from freestyle import Curvature2DAngleF0D, CurveNatureF1D, DensityF1D, GetCompleteViewMapDensityF1D, \
     GetDirectionalViewMapDensityF1D, GetOccludersF1D, GetProjectedZF1D, GetShapeF1D, GetSteerableViewMapDensityF1D, \
     IntegrationType, ShapeUP1D, TVertex, UnaryPredicate1D
 from Functions1D import pyDensityAnisotropyF1D, pyViewMapGradientNormF1D

Modified: trunk/blender/release/scripts/freestyle/style_modules/anisotropic_diffusion.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/anisotropic_diffusion.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/anisotropic_diffusion.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 12/08/2004
 #  Purpose  : Smoothes lines using an anisotropic diffusion scheme
 
-from Freestyle import ChainPredicateIterator, ConstantThicknessShader, ExternalContourUP1D, IncreasingColorShader, \
+from freestyle import ChainPredicateIterator, ConstantThicknessShader, ExternalContourUP1D, IncreasingColorShader, \
     Operators, QuantitativeInvisibilityUP1D, SamplingShader, Stroke, StrokeTextureShader, TrueBP1D, TrueUP1D
 from logical_operators import AndUP1D, NotUP1D
 from shaders import pyDiffusion2Shader

Modified: trunk/blender/release/scripts/freestyle/style_modules/apriori_and_causal_density.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/apriori_and_causal_density.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/apriori_and_causal_density.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -23,7 +23,7 @@
 #             subjects them to the causal density so as to avoid 
 #             cluttering
 
-from Freestyle import ChainPredicateIterator, ConstantColorShader, ConstantThicknessShader, IntegrationType, \
+from freestyle import ChainPredicateIterator, ConstantColorShader, ConstantThicknessShader, IntegrationType, \
     Operators, QuantitativeInvisibilityUP1D, TrueBP1D
 from PredicatesU1D import pyDensityUP1D, pyHighViewMapDensityUP1D
 from logical_operators import AndUP1D, NotUP1D

Modified: trunk/blender/release/scripts/freestyle/style_modules/apriori_density.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/apriori_density.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/apriori_density.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 04/08/2005
 #  Purpose  : Draws lines having a high a priori density
 
-from Freestyle import ChainPredicateIterator, ConstantColorShader, ConstantThicknessShader, Operators, \
+from freestyle import ChainPredicateIterator, ConstantColorShader, ConstantThicknessShader, Operators, \
     QuantitativeInvisibilityUP1D, TrueBP1D, TrueUP1D
 from PredicatesU1D import pyHighViewMapDensityUP1D
 from logical_operators import AndUP1D, NotUP1D

Modified: trunk/blender/release/scripts/freestyle/style_modules/backbone_stretcher.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/backbone_stretcher.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/backbone_stretcher.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 04/08/2005
 #  Purpose  : Stretches the geometry of visible lines
 
-from Freestyle import BackboneStretcherShader, ChainSilhouetteIterator, ConstantColorShader, \
+from freestyle import BackboneStretcherShader, ChainSilhouetteIterator, ConstantColorShader, \
     Operators, QuantitativeInvisibilityUP1D, TextureAssignerShader, TrueUP1D
 from logical_operators import NotUP1D
 

Modified: trunk/blender/release/scripts/freestyle/style_modules/blueprint_circles.py
===================================================================
--- trunk/blender/release/scripts/freestyle/style_modules/blueprint_circles.py	2013-04-07 10:25:59 UTC (rev 55876)
+++ trunk/blender/release/scripts/freestyle/style_modules/blueprint_circles.py	2013-04-07 11:22:54 UTC (rev 55877)
@@ -21,7 +21,7 @@
 #  Date     : 04/08/2005
 #  Purpose  : Produces a blueprint using circular contour strokes
 
-from Freestyle import ChainPredicateIterator, ConstantThicknessShader, ContourUP1D, IncreasingColorShader, \

@@ Diff output truncated at 10240 characters. @@



More information about the Bf-blender-cvs mailing list