From 2d801f2bec3c4de663f33b0f0f198a12f09ef989 Mon Sep 17 00:00:00 2001 From: Tamito Kajiyama Date: Mon, 11 Mar 2013 06:56:51 +0000 Subject: Another big code clean-up patch from Bastien Montagne, thanks again! --- .../freestyle/intern/stroke/AdvancedFunctions1D.h | 24 +++++++++++++--------- 1 file changed, 14 insertions(+), 10 deletions(-) (limited to 'source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h') diff --git a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h index 35f516cd781..8373450d440 100644 --- a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h +++ b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h @@ -64,8 +64,9 @@ public: * \param iType * The integration method used to compute a single value from a set of values. * \param sampling - * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and the - * result is obtained by combining the resulting values into a single one, following the method specified by iType. + * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and + * the result is obtained by combining the resulting values into a single one, following the method specified + * by iType. */ DensityF1D(double sigma = 2, IntegrationType iType = MEAN, float sampling = 2.0f) : UnaryFunction1D(iType), _fun(sigma) @@ -187,8 +188,9 @@ public: * \param iType * The integration method used to compute a single value from a set of values. * \param sampling - * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and the - * result is obtained by combining the resulting values into a single one, following the method specified by iType. + * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and + * the result is obtained by combining the resulting values into a single one, following the method specified + * by iType. */ GetDirectionalViewMapDensityF1D(unsigned iOrientation, unsigned level, IntegrationType iType = MEAN, float sampling = 2.0f) @@ -228,10 +230,11 @@ public: * \param iType * The integration method used to compute a single value from a set of values. * \param sampling - * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and the - * result is obtained by combining the resulting values into a single one, following the method specified by iType. + * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and + * the result is obtained by combining the resulting values into a single one, following the method specified + * by iType. */ - GetSteerableViewMapDensityF1D(int level,IntegrationType iType = MEAN, float sampling = 2.0f) + GetSteerableViewMapDensityF1D(int level, IntegrationType iType = MEAN, float sampling = 2.0f) : UnaryFunction1D(iType) { _level = level; @@ -269,10 +272,11 @@ public: * \param iType * The integration method used to compute a single value from a set of values. * \param sampling - * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and the - * result is obtained by combining the resulting values into a single one, following the method specified by iType. + * The resolution used to sample the chain: the corresponding 0D function is evaluated at each sample point and + * the result is obtained by combining the resulting values into a single one, following the method specified + * by iType. */ - GetViewMapGradientNormF1D(int level,IntegrationType iType = MEAN, float sampling = 2.0f) + GetViewMapGradientNormF1D(int level, IntegrationType iType = MEAN, float sampling = 2.0f) : UnaryFunction1D(iType), _func(level) { _level = level; -- cgit v1.2.3