Replaced sampler getPosX, etc, with general getPosition().
This commit is contained in:
		| @@ -50,9 +50,7 @@ namespace PolyVox | ||||
| 			Sampler(DerivedVolumeType* volume); | ||||
| 			~Sampler(); | ||||
|  | ||||
| 			int32_t getPosX(void) const; | ||||
| 			int32_t getPosY(void) const; | ||||
| 			int32_t getPosZ(void) const; | ||||
| 			Vector3DInt32 getPosition(void) const; | ||||
| 			inline VoxelType getVoxel(void) const;	 | ||||
|  | ||||
| 			void setPosition(const Vector3DInt32& v3dNewPos); | ||||
|   | ||||
| @@ -41,23 +41,9 @@ namespace PolyVox | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	template <typename DerivedVolumeType> | ||||
| 	int32_t BaseVolume<VoxelType>::Sampler<DerivedVolumeType>::getPosX(void) const | ||||
| 	Vector3DInt32 BaseVolume<VoxelType>::Sampler<DerivedVolumeType>::getPosition(void) const | ||||
| 	{ | ||||
| 		return mXPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	template <typename DerivedVolumeType> | ||||
| 	int32_t BaseVolume<VoxelType>::Sampler<DerivedVolumeType>::getPosY(void) const | ||||
| 	{ | ||||
| 		return mYPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	template <typename DerivedVolumeType> | ||||
| 	int32_t BaseVolume<VoxelType>::Sampler<DerivedVolumeType>::getPosZ(void) const | ||||
| 	{ | ||||
| 		return mZPosInVolume; | ||||
| 		return Vector3DInt32(mXPosInVolume, mYPosInVolume, mZPosInVolume); | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
|   | ||||
| @@ -47,9 +47,9 @@ namespace PolyVox | ||||
| 	template< template<typename> class VolumeType, typename VoxelType> | ||||
| 	Vector3DFloat computeDecimatedCentralDifferenceGradient(const typename VolumeType<VoxelType>::Sampler& volIter) | ||||
| 	{ | ||||
| 		const int32_t x = volIter.getPosX(); | ||||
| 		const int32_t y = volIter.getPosY(); | ||||
| 		const int32_t z = volIter.getPosZ(); | ||||
| 		const int32_t x = volIter.getPosition().getX(); | ||||
| 		const int32_t y = volIter.getPosition().getY(); | ||||
| 		const int32_t z = volIter.getPosition().getZ(); | ||||
|  | ||||
| 		//FIXME - bitwise way of doing this? | ||||
| 		VoxelType voxel1nx = volIter.getVoxelAt(x-2, y  ,z  ) > 0 ? 1: 0; | ||||
| @@ -72,9 +72,9 @@ namespace PolyVox | ||||
| 	template< template<typename> class VolumeType, typename VoxelType> | ||||
| 	Vector3DFloat computeSmoothCentralDifferenceGradient(typename VolumeType<VoxelType>::Sampler& volIter) | ||||
| 	{ | ||||
| 		int32_t initialX = volIter.getPosX(); | ||||
| 		int32_t initialY = volIter.getPosY(); | ||||
| 		int32_t initialZ = volIter.getPosZ(); | ||||
| 		int32_t initialX = volIter.getPosition().getX(); | ||||
| 		int32_t initialY = volIter.getPosition().getY(); | ||||
| 		int32_t initialZ = volIter.getPosition().getZ(); | ||||
|  | ||||
| 		//FIXME - bitwise way of doing this? | ||||
| 		volIter.setPosition(initialX-1, initialY, initialZ); | ||||
| @@ -189,9 +189,9 @@ namespace PolyVox | ||||
| 		static const int weights[3][3][3] = {  {  {2,3,2}, {3,6,3}, {2,3,2}  },  { | ||||
| 			{3,6,3},  {6,0,6},  {3,6,3} },  { {2,3,2},  {3,6,3},  {2,3,2} } }; | ||||
|  | ||||
| 			int32_t initialX = volIter.getPosX(); | ||||
| 			int32_t initialY = volIter.getPosY(); | ||||
| 			int32_t initialZ = volIter.getPosZ(); | ||||
| 			int32_t initialX = volIter.getPosition().getX(); | ||||
| 			int32_t initialY = volIter.getPosition().getY(); | ||||
| 			int32_t initialZ = volIter.getPosition().getZ(); | ||||
|  | ||||
| 			volIter.setPosition(initialX-1, initialY-1, initialZ-1);	const float pVoxel1nx1ny1nz = computeSmoothedVoxel(volIter); | ||||
| 			volIter.setPosition(initialX-1, initialY-1, initialZ );		const float pVoxel1nx1ny0pz = computeSmoothedVoxel(volIter); | ||||
|   | ||||
| @@ -32,7 +32,7 @@ namespace PolyVox | ||||
| 	template <typename IteratorType> | ||||
| 	bool IteratorController<IteratorType>::moveForward(void) | ||||
| 	{ | ||||
| 		Vector3DInt32 v3dInitialPosition(m_Iter->getPosX(), m_Iter->getPosY(), m_Iter->getPosZ()); | ||||
| 		Vector3DInt32 v3dInitialPosition(m_Iter->getPosition().getX(), m_Iter->getPosition().getY(), m_Iter->getPosition().getZ()); | ||||
|  | ||||
| 		if(v3dInitialPosition.getX() < m_regValid.getUpperCorner().getX()) | ||||
| 		{ | ||||
|   | ||||
| @@ -172,9 +172,6 @@ namespace PolyVox | ||||
|  | ||||
| 			Sampler& operator=(const Sampler& rhs) throw(); | ||||
|  | ||||
| 			int32_t getPosX(void) const; | ||||
| 			int32_t getPosY(void) const; | ||||
| 			int32_t getPosZ(void) const; | ||||
| 			VoxelType getSubSampledVoxel(uint8_t uLevel) const; | ||||
| 			inline VoxelType getVoxel(void) const;			 | ||||
|  | ||||
|   | ||||
| @@ -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 | ||||
| 	{		 | ||||
|   | ||||
| @@ -59,9 +59,6 @@ namespace PolyVox | ||||
| 			Sampler(RawVolume<VoxelType>* volume); | ||||
| 			~Sampler(); | ||||
|  | ||||
| 			int32_t getPosX(void) const; | ||||
| 			int32_t getPosY(void) const; | ||||
| 			int32_t getPosZ(void) const; | ||||
| 			inline VoxelType getVoxel(void) const;			 | ||||
|  | ||||
| 			void setPosition(const Vector3DInt32& v3dNewPos); | ||||
|   | ||||
| @@ -45,24 +45,6 @@ namespace PolyVox | ||||
| 	{ | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t RawVolume<VoxelType>::Sampler::getPosX(void) const | ||||
| 	{ | ||||
| 		return this->mXPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t RawVolume<VoxelType>::Sampler::getPosY(void) const | ||||
| 	{ | ||||
| 		return this->mYPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t RawVolume<VoxelType>::Sampler::getPosZ(void) const | ||||
| 	{ | ||||
| 		return this->mZPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	VoxelType RawVolume<VoxelType>::Sampler::getVoxel(void) const | ||||
| 	{ | ||||
|   | ||||
| @@ -87,9 +87,6 @@ namespace PolyVox | ||||
|  | ||||
| 			Sampler& operator=(const Sampler& rhs) throw(); | ||||
|  | ||||
| 			int32_t getPosX(void) const; | ||||
| 			int32_t getPosY(void) const; | ||||
| 			int32_t getPosZ(void) const; | ||||
| 			VoxelType getSubSampledVoxel(uint8_t uLevel) const; | ||||
| 			inline VoxelType getVoxel(void) const;			 | ||||
|  | ||||
|   | ||||
| @@ -54,24 +54,6 @@ namespace PolyVox | ||||
|         return *this; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t SimpleVolume<VoxelType>::Sampler::getPosX(void) const | ||||
| 	{ | ||||
| 		return this->mXPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t SimpleVolume<VoxelType>::Sampler::getPosY(void) const | ||||
| 	{ | ||||
| 		return this->mYPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	int32_t SimpleVolume<VoxelType>::Sampler::getPosZ(void) const | ||||
| 	{ | ||||
| 		return this->mZPosInVolume; | ||||
| 	} | ||||
|  | ||||
| 	template <typename VoxelType> | ||||
| 	VoxelType SimpleVolume<VoxelType>::Sampler::getSubSampledVoxel(uint8_t uLevel) const | ||||
| 	{		 | ||||
|   | ||||
| @@ -531,8 +531,8 @@ namespace PolyVox | ||||
| 				m_sampVolume.setPosition(iXVolSpace,iYVolSpace,iZVolSpace);	 | ||||
|  | ||||
| 				//Current position | ||||
| 				const uint32_t uXRegSpace = m_sampVolume.getPosX() - m_regSizeInVoxels.getLowerCorner().getX(); | ||||
| 				const uint32_t uYRegSpace = m_sampVolume.getPosY() - m_regSizeInVoxels.getLowerCorner().getY(); | ||||
| 				const uint32_t uXRegSpace = m_sampVolume.getPosition().getX() - m_regSizeInVoxels.getLowerCorner().getX(); | ||||
| 				const uint32_t uYRegSpace = m_sampVolume.getPosition().getY() - m_regSizeInVoxels.getLowerCorner().getY(); | ||||
|  | ||||
| 				//Determine the index into the edge table which tells us which vertices are inside of the surface | ||||
| 				uint8_t iCubeIndex = pPreviousBitmask[uXRegSpace][uYRegSpace]; | ||||
|   | ||||
		Reference in New Issue
	
	Block a user