Applied patch from ker such that int32_t's are now used instead of uint16_t's for addressing voxel positions.

This commit is contained in:
David Williams
2011-03-03 23:00:00 +00:00
parent 3c34d401fc
commit 4ef0cfb468
24 changed files with 278 additions and 251 deletions

View File

@ -84,7 +84,7 @@ namespace PolyVox
return false;
}
PolyVox::Vector3DInt16 position;
PolyVox::Vector3DInt32 position;
Node* parent;
float gVal;
float hVal;

View File

@ -25,7 +25,7 @@ freely, subject to the following restrictions:
#define __PolyVox_Block_H__
#include "PolyVoxForwardDeclarations.h"
#include <limits>
#include <vector>
namespace PolyVox