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:
authorYimingWu <xp8110@outlook.com>2019-08-20 16:09:55 +0300
committerYimingWu <xp8110@outlook.com>2019-08-20 16:09:55 +0300
commit8bee9af462238936087e0056d97cf086c2f7059a (patch)
treea103e0e42dccc788f5897782837093ce724e106d /source/blender/blenlib/BLI_math_base.h
parenta942d97b7971dc0e7add44e3e9ba1c02fb914f7d (diff)
BLI: double version of some math functions.
Diffstat (limited to 'source/blender/blenlib/BLI_math_base.h')
-rw-r--r--source/blender/blenlib/BLI_math_base.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_math_base.h b/source/blender/blenlib/BLI_math_base.h
index 5b941f570de..deb29605552 100644
--- a/source/blender/blenlib/BLI_math_base.h
+++ b/source/blender/blenlib/BLI_math_base.h
@@ -112,6 +112,7 @@ MINLINE float saasin(float fac);
MINLINE float sasqrt(float fac);
MINLINE float interpf(float a, float b, float t);
+MINLINE double interpd(double a, double b, double t);
MINLINE float min_ff(float a, float b);
MINLINE float max_ff(float a, float b);