Renamed VolumeIterator to BlockVolumeIterator

This commit is contained in:
David Williams
2008-05-26 20:07:06 +00:00
parent ebeebee126
commit c8d632b554
11 changed files with 84 additions and 84 deletions

View File

@ -192,9 +192,9 @@ namespace PolyVox
}
template <typename VoxelType>
VolumeIterator<VoxelType> BlockVolume<VoxelType>::firstVoxel(void)
BlockVolumeIterator<VoxelType> BlockVolume<VoxelType>::firstVoxel(void)
{
VolumeIterator<VoxelType> iter(*this);
BlockVolumeIterator<VoxelType> iter(*this);
iter.setPosition(0,0,0);
return iter;
}
@ -205,9 +205,9 @@ namespace PolyVox
}
template <typename VoxelType>
VolumeIterator<VoxelType> BlockVolume<VoxelType>::lastVoxel(void)
BlockVolumeIterator<VoxelType> BlockVolume<VoxelType>::lastVoxel(void)
{
VolumeIterator<VoxelType> iter(*this);
BlockVolumeIterator<VoxelType> iter(*this);
iter.setPosition(m_uSideLength-1,m_uSideLength-1,m_uSideLength-1);
return iter;
}