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>2014-04-04 12:01:48 +0400
committerTamito Kajiyama <rd6t-kjym@asahi-net.or.jp>2014-04-04 18:47:31 +0400
commit2dedf2a4e608a96e8d2507d421e28a7c057e9060 (patch)
tree652e69e2bb7d9349a2178d4628d9801cadca1fa6 /source/blender/freestyle
parent62bf22e27b47fd929e54c4e127a1bba02faf5f34 (diff)
Missing file in commit 12302011d6207a60b24d0cae71a88df0384bc5da.
Diffstat (limited to 'source/blender/freestyle')
-rw-r--r--source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
index 48534439217..f58acf02d48 100644
--- a/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
+++ b/source/blender/freestyle/intern/stroke/AdvancedFunctions1D.h
@@ -212,7 +212,7 @@ private:
/*! Returns the density of the viewmap for a given Interface1D. The density of each FEdge is evaluated
* in the proper steerable ViewMap depending on its oorientation.
*/
-class LIB_STROKE_EXPORT GetSteerableViewMapDensityF1D : public UnaryFunction1D<real>
+class LIB_STROKE_EXPORT GetSteerableViewMapDensityF1D : public UnaryFunction1D<double>
{
private:
int _level;
@@ -230,7 +230,7 @@ public:
* by iType.
*/
GetSteerableViewMapDensityF1D(int level, IntegrationType iType = MEAN, float sampling = 2.0f)
- : UnaryFunction1D<real>(iType)
+ : UnaryFunction1D<double>(iType)
{
_level = level;
_sampling = sampling;
@@ -253,7 +253,7 @@ public:
/*! Returns the density of the viewmap for a given Interface1D. The density of each FEdge is evaluated in
* the proper steerable ViewMap depending on its oorientation.
*/
-class LIB_STROKE_EXPORT GetViewMapGradientNormF1D : public UnaryFunction1D<real>
+class LIB_STROKE_EXPORT GetViewMapGradientNormF1D : public UnaryFunction1D<double>
{
private:
int _level;
@@ -272,7 +272,7 @@ public:
* by iType.
*/
GetViewMapGradientNormF1D(int level, IntegrationType iType = MEAN, float sampling = 2.0f)
- : UnaryFunction1D<real>(iType), _func(level)
+ : UnaryFunction1D<double>(iType), _func(level)
{
_level = level;
_sampling = sampling;