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:
authorCampbell Barton <ideasman42@gmail.com>2013-05-08 16:56:02 +0400
committerCampbell Barton <ideasman42@gmail.com>2013-05-08 16:56:02 +0400
commit7fac20008000c095f48679a045cdfab5db1aeba2 (patch)
tree6343c0638361da17e596a2efc56271b9149b88f5 /source/blender/blenlib
parent3b341068ba6be81083644ca56649466ad933fdbb (diff)
remove unused define CLAMPTEST, move INPR to
collision_compute_barycentric(), only place its used.
Diffstat (limited to 'source/blender/blenlib')
-rw-r--r--source/blender/blenlib/BLI_utildefines.h9
1 files changed, 0 insertions, 9 deletions
diff --git a/source/blender/blenlib/BLI_utildefines.h b/source/blender/blenlib/BLI_utildefines.h
index bd6057f8b8f..1a0073a8f13 100644
--- a/source/blender/blenlib/BLI_utildefines.h
+++ b/source/blender/blenlib/BLI_utildefines.h
@@ -266,8 +266,6 @@ typedef bool _BLI_Bool;
*(v1 + 2) = *(v2 + 2) - *(v3 + 2) * (fac); \
} (void)0
-#define INPR(v1, v2) ( (v1)[0] * (v2)[0] + (v1)[1] * (v2)[1] + (v1)[2] * (v2)[2])
-
/* some misc stuff.... */
#define CLAMP(a, b, c) { \
if ((a) < (b)) (a) = (b); \
@@ -275,13 +273,6 @@ typedef bool _BLI_Bool;
} (void)0
#define CLAMPIS(a, b, c) ((a) < (b) ? (b) : (a) > (c) ? (c) : (a))
-#define CLAMPTEST(a, b, c) \
- if ((b) < (c)) { \
- CLAMP(a, b, c); \
- } \
- else { \
- CLAMP(a, c, b); \
- } (void)0
#define IS_EQ(a, b) ((fabs((double)(a) - (b)) >= (double) FLT_EPSILON) ? 0 : 1)
#define IS_EQF(a, b) ((fabsf((float)(a) - (b)) >= (float) FLT_EPSILON) ? 0 : 1)