more delete voxel debugging, call reaverage colors on root node

This commit is contained in:
ZappoMan 2013-04-03 11:14:00 -07:00
parent 8988796285
commit 407fa95195
3 changed files with 7 additions and 3 deletions

View file

@ -202,7 +202,7 @@ void VoxelTree::deleteVoxelCodeFromTree(unsigned char *codeBuffer) {
parentNode->children[childNDX]=NULL; // set it to NULL
printf("reaverageVoxelColors()\n");
reaverageVoxelColors(parentNode); // Fix our colors!!
reaverageVoxelColors(rootNode); // Fix our colors!! Need to call it on rootNode
}
}
}

View file

@ -638,7 +638,7 @@ function convertObjFile($inputFileName,$outputFileName)
// Note: fill from
case 'fill_from':
// a vertice
$ = new Vertice();
$v = new Vertice();
$v->x = (float)$parts[1];
$v->y = (float)$parts[2];
$v->z = (float)$parts[3];

View file

@ -11,8 +11,12 @@ function send_voxels($inputFileName,$server,$port,$command) {
$netData = pack("cv",ord($command),$voxNum);
$packetSize = 3; // to start
while ($packetSize < 1450) {
while ($packetSize < 1450 && !feof($inputFile)) {
$octets = fread($inputFile,1);
if (feof($inputFile)) {
echo "end of file\n";
break;
}
$octets = (int)ord($octets);
echo "read octets=$octets\n";