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
path: root/source
diff options
context:
space:
mode:
authorJohnny Matthews <johnny.matthews@gmail.com>2005-07-29 22:54:48 +0400
committerJohnny Matthews <johnny.matthews@gmail.com>2005-07-29 22:54:48 +0400
commit60dc7730f488c9f6697c16f17511b2c97052a23d (patch)
treed63429db99adeeb7943ec1098f96cd9c4034c675 /source
parent0d90195d178bd4f7c70c32cda7a5fa6ba030e382 (diff)
Commented out some debug printfs
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editmesh_tools.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/src/editmesh_tools.c b/source/blender/src/editmesh_tools.c
index b48298bfc1a..5eaa0343f06 100644
--- a/source/blender/src/editmesh_tools.c
+++ b/source/blender/src/editmesh_tools.c
@@ -1280,9 +1280,9 @@ static void set_uv_vcol(EditFace *efa, float *co, float *uv, char *col)
/* interpolate */
l= 1.0+u+v;
/* outside triangle? */
- printf("l: %f\n",l);
+ // printf("l: %f\n",l);
if(efa->v4 && l >= 0.5) {
- printf("outside\n");
+ // printf("outside\n");
/* do it all over, but now with vertex 2 replaced with 4 */
/* calculate u and v */
@@ -1317,7 +1317,7 @@ static void set_uv_vcol(EditFace *efa, float *co, float *uv, char *col)
col[i]= CLAMPIS(fac, 0, 255);
}
} else {
- printf("inside\n");
+ // printf("inside\n");
//new = l*vertex3_val - u*vertex1_val - v*vertex2_val;
uv[0] = (l*efa->tf.uv[2][0] - u*efa->tf.uv[0][0] - v*efa->tf.uv[1][0]);
uv[1] = (l*efa->tf.uv[2][1] - u*efa->tf.uv[0][1] - v*efa->tf.uv[1][1]);