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-11 06:47:15 +0300
committerJoshua Leung <aligorith@gmail.com>2006-12-11 06:47:15 +0300
commitc41e0e205f81fa0ebe217350e1730e67f8be99c9 (patch)
tree24c8d26312d6e60393f903e60769eaac1e955548 /source/blender/src/editipo.c
parentb69fdd21ba10194735f2526390077384bae54eba (diff)
A little bit of code cleanup:
* Moved BEZSELECTED macro to blendef.h as it is used in several files * Removed other duplicated macros
Diffstat (limited to 'source/blender/src/editipo.c')
-rw-r--r--source/blender/src/editipo.c4
1 files changed, 0 insertions, 4 deletions
diff --git a/source/blender/src/editipo.c b/source/blender/src/editipo.c
index 19671b3315b..1f8fdf0f981 100644
--- a/source/blender/src/editipo.c
+++ b/source/blender/src/editipo.c
@@ -130,11 +130,7 @@ extern int te_ar[];
extern int fluidsim_ar[]; // NT
/* forwards */
-#define BEZSELECTED(bezt) (((bezt)->f1 & 1) || ((bezt)->f2 & 1) || ((bezt)->f3 & 1))
-
#define IPOTHRESH 0.9
-#define ISPOIN(a, b, c) ( (a->b) && (a->c) )
-#define ISPOIN3(a, b, c, d) ( (a->b) && (a->c) && (a->d) )
/* tests if only one editipo is active */
static void check_active_editipo(void)