From 8524c6c4b64d73c5550b6981d3ca97de40720048 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Fri, 29 Mar 2013 09:27:23 -0700 Subject: [PATCH] debug --- shared/src/VoxelTree.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shared/src/VoxelTree.cpp b/shared/src/VoxelTree.cpp index 55631867b7..204e4cb9f5 100644 --- a/shared/src/VoxelTree.cpp +++ b/shared/src/VoxelTree.cpp @@ -528,7 +528,7 @@ void VoxelTree::createSphere(float r,float xc, float yc, float zc, float s, bool // only use our actual desired color on the outer edge, otherwise // use our "average" color if (ri+(s*2.0)>=r) { - //printf("painting candy shell radius: ri=%f r=%f\n",ri,r); + printf("painting candy shell radius: ri=%f r=%f\n",ri,r); red = wantColorRandomizer ? randomColorValue(165) : r1+((r2-r1)*gradient); green = wantColorRandomizer ? randomColorValue(165) : g1+((g2-g1)*gradient); blue = wantColorRandomizer ? randomColorValue(165) : b1+((b2-b1)*gradient);