Replaced sampler getPosX, etc, with general getPosition().

This commit is contained in:
unknown
2012-03-09 16:03:46 +01:00
parent 4658e8026e
commit af04b96105
11 changed files with 15 additions and 94 deletions

View File

@ -54,24 +54,6 @@ namespace PolyVox
return *this;
}
template <typename VoxelType>
int32_t LargeVolume<VoxelType>::Sampler::getPosX(void) const
{
return this->mXPosInVolume;
}
template <typename VoxelType>
int32_t LargeVolume<VoxelType>::Sampler::getPosY(void) const
{
return this->mYPosInVolume;
}
template <typename VoxelType>
int32_t LargeVolume<VoxelType>::Sampler::getPosZ(void) const
{
return this->mZPosInVolume;
}
template <typename VoxelType>
VoxelType LargeVolume<VoxelType>::Sampler::getSubSampledVoxel(uint8_t uLevel) const
{