Work on Volume class.
This commit is contained in:
@ -36,7 +36,7 @@ namespace PolyVox
|
||||
//Make VolumeIterator a friend
|
||||
friend class VolumeIterator<VoxelType>;
|
||||
public:
|
||||
BlockData(uint8_t uSideLength);
|
||||
BlockData(uint16_t uSideLength);
|
||||
BlockData(const BlockData& rhs);
|
||||
~BlockData();
|
||||
|
||||
|
@ -33,7 +33,7 @@ namespace PolyVox
|
||||
{
|
||||
#pragma region Constructors/Destructors
|
||||
template <typename VoxelType>
|
||||
BlockData<VoxelType>::BlockData(uint8_t uSideLength)
|
||||
BlockData<VoxelType>::BlockData(uint16_t uSideLength)
|
||||
:m_tData(0)
|
||||
{
|
||||
//Debug mode validation
|
||||
|
Reference in New Issue
Block a user