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:
authorJoshua Leung <aligorith@gmail.com>2006-12-15 01:58:22 +0300
committerJoshua Leung <aligorith@gmail.com>2006-12-15 01:58:22 +0300
commit4935f0b23149fc2b78d334424c86bda968a74d0d (patch)
tree4451aafdda1acb31492b6492af0624250795e2ca /source/blender/blenlib/BLI_arithb.h
parentf631c2d49ea70a24996224392a6dd3ce1454998f (diff)
Constraints on bones working in 'local' mode, now obey the Enforce
value for constraints. Only Copy Rotation used to do so. Note: only enforce values of 0.0 or 1.0 are useful/totally predictable
Diffstat (limited to 'source/blender/blenlib/BLI_arithb.h')
-rw-r--r--source/blender/blenlib/BLI_arithb.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/source/blender/blenlib/BLI_arithb.h b/source/blender/blenlib/BLI_arithb.h
index fa7c05cce7c..5453c87e35c 100644
--- a/source/blender/blenlib/BLI_arithb.h
+++ b/source/blender/blenlib/BLI_arithb.h
@@ -472,6 +472,12 @@ FloatCompare(
float limit
);
float
+FloatLerpf(
+ float target,
+ float origin,
+ float fac
+);
+ float
Normalise(
float *n
);