Tidying up.
This commit is contained in:
		| @@ -45,10 +45,13 @@ namespace PolyVox | ||||
| 		int endIndex; //Let's put it just past the end STL style | ||||
| 	}; | ||||
|  | ||||
| 	template <typename VertexType> | ||||
| 	template <typename _VertexType> | ||||
| 	class Mesh | ||||
| 	{ | ||||
| 	public: | ||||
|  | ||||
| 		typedef _VertexType VertexType; | ||||
|  | ||||
| 	   Mesh(); | ||||
| 	   ~Mesh();	    | ||||
|  | ||||
|   | ||||
| @@ -36,11 +36,14 @@ namespace PolyVox | ||||
| #ifdef SWIG | ||||
| 	class CubicVertex | ||||
| #else | ||||
| 	template<typename VoxelType> | ||||
| 	template<typename _VoxelType> | ||||
| 	class POLYVOX_API CubicVertex | ||||
| #endif | ||||
| 	{ | ||||
| 	public:	 | ||||
|  | ||||
| 		typedef _VoxelType VoxelType; | ||||
|  | ||||
| 		CubicVertex() | ||||
| 		{ | ||||
| 		} | ||||
| @@ -97,11 +100,14 @@ namespace PolyVox | ||||
| #ifdef SWIG | ||||
| 	class MarchingCubesVertex | ||||
| #else | ||||
| 	template<typename VoxelType> | ||||
| 	template<typename _VoxelType> | ||||
| 	class POLYVOX_API MarchingCubesVertex | ||||
| #endif | ||||
| 	{ | ||||
| 	public: | ||||
|  | ||||
| 		typedef _VoxelType VoxelType; | ||||
|  | ||||
| 		MarchingCubesVertex() | ||||
| 		{ | ||||
| 		} | ||||
|   | ||||
		Reference in New Issue
	
	Block a user