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:
authorTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-11 10:56:51 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2013-03-11 10:56:51 +0400
commit2d801f2bec3c4de663f33b0f0f198a12f09ef989 (patch)
treedfe16a3ca2213bd5b6579ed3bc2ac2902b678067 /source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
parent4a92d82626980d6d1690113b9d27aae282fd48eb (diff)
Another big code clean-up patch from Bastien Montagne, thanks again!
Diffstat (limited to 'source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h')
-rw-r--r--source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h24
1 files changed, 14 insertions, 10 deletions
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<double>(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<real>(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<real>(iType), _func(level)
{
_level = level;