mirror of
https://github.com/JulianGro/overte.git
synced 2025-04-05 21:02:25 +02:00
more delete voxel debugging, call reaverage colors on root node
This commit is contained in:
parent
8988796285
commit
407fa95195
3 changed files with 7 additions and 3 deletions
|
@ -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
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -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];
|
||||
|
|
|
@ -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";
|
||||
|
||||
|
|
Loading…
Reference in a new issue