Renamed Volume to BlockVolume.

This commit is contained in:
David Williams
2008-05-24 16:25:05 +00:00
parent dc9950d1c8
commit b42f28793f
8 changed files with 44 additions and 44 deletions

View File

@ -34,7 +34,7 @@ namespace PolyVox
class VolumeIterator
{
public:
VolumeIterator(Volume<VoxelType>& volume);
VolumeIterator(BlockVolume<VoxelType>& volume);
~VolumeIterator();
bool operator==(const VolumeIterator& rhs);
@ -89,7 +89,7 @@ namespace PolyVox
private:
//The current volume
Volume<VoxelType>& mVolume;
BlockVolume<VoxelType>& mVolume;
//The current position in the volume
boost::uint16_t mXPosInVolume;