From e920a6e873c3f6f02eda95e225311073d048e121 Mon Sep 17 00:00:00 2001 From: ZappoMan Date: Fri, 29 Mar 2013 08:53:28 -0700 Subject: [PATCH] tweak --- voxel/src/main.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/voxel/src/main.cpp b/voxel/src/main.cpp index ff20bbcf0e..e680781e2c 100644 --- a/voxel/src/main.cpp +++ b/voxel/src/main.cpp @@ -52,7 +52,7 @@ void addSphere(VoxelTree * tree,bool random, bool wantColorRandomizer) { float xc = random ? randFloatInRange(r,(1-r)) : 0.5; float yc = random ? randFloatInRange(r,(1-r)) : 0.5; float zc = random ? randFloatInRange(r,(1-r)) : 0.5; - float s = (1.0/32); // size of voxels to make up surface of sphere + float s = (1.0/16); // size of voxels to make up surface of sphere bool solid = true; printf("adding sphere:");