Fixed compile error.

This commit is contained in:
David Williams
2010-08-31 21:35:33 +00:00
parent fa2ace83e3
commit 40d26b4361
2 changed files with 3 additions and 5 deletions

View File

@ -147,7 +147,7 @@ namespace PolyVox
///Gets a voxel by <tt>x,y,z</tt> position
VoxelType getVoxelAt(uint16_t uXPos, uint16_t uYPos, uint16_t uZPos) const;
///Gets a voxel by 3D vector position
VoxelType getVoxelAt(const Vector3DUint16& v3dPos, VoxelType tDefault = VoxelType()) const;
VoxelType getVoxelAt(const Vector3DUint16& v3dPos) const;
///Sets the value used for voxels which are outside the volume
void setBorderValue(const VoxelType& tBorder);