Moved sampler position into base class.

This commit is contained in:
David Williams
2011-07-30 14:07:33 +01:00
parent 5ddc553ef2
commit b94b7e7baf
6 changed files with 51 additions and 79 deletions

View File

@@ -119,16 +119,7 @@ namespace PolyVox
inline VoxelType peekVoxel1px1py0pz(void) const;
inline VoxelType peekVoxel1px1py1pz(void) const;
private:
//The current volume
//SimpleVolume<VoxelType>* mVolume;
//The current position in the volume
int32_t mXPosInVolume;
int32_t mYPosInVolume;
int32_t mZPosInVolume;
private:
//Other current position information
VoxelType* mCurrentVoxel;
};