Renamed 'PolyVoxImpl' to just 'Impl'.

This commit is contained in:
unknown
2012-11-05 17:00:09 +01:00
parent 3c69bb651f
commit d4edc1047e
44 changed files with 2566 additions and 2566 deletions

View File

@ -24,8 +24,8 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_AStarPathfinder_H__
#define __PolyVox_AStarPathfinder_H__
#include "PolyVoxImpl/AStarPathfinderImpl.h"
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/AStarPathfinderImpl.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Array.h"

View File

@ -24,8 +24,8 @@ freely, subject to the following restrictions:
#ifndef __AmbientOcclusionCalculator_H__
#define __AmbientOcclusionCalculator_H__
#include "PolyVoxImpl/RandomUnitVectors.h"
#include "PolyVoxImpl/RandomVectors.h"
#include "Impl/RandomUnitVectors.h"
#include "Impl/RandomVectors.h"
#include "PolyVoxCore/Array.h"
#include "PolyVoxCore/Region.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Array_H__
#define __PolyVox_Array_H__
#include "PolyVoxImpl/SubArray.h"
#include "Impl/SubArray.h"
#include "PolyVoxCore/ArraySizes.h" //Not strictly required, but convienient

View File

@ -24,8 +24,8 @@ distribution.
#ifndef __PolyVox_ArraySizes_H__
#define __PolyVox_ArraySizes_H__
#include "PolyVoxImpl/ArraySizesImpl.h"
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/ArraySizesImpl.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_CubicSurfaceExtractor_H__
#define __PolyVox_CubicSurfaceExtractor_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Array.h"
#include "PolyVoxCore/DefaultIsQuadNeeded.h"

View File

@ -26,7 +26,7 @@ freely, subject to the following restrictions:
#include "PolyVoxCore/DefaultMarchingCubesController.h" //We'll specialise the controller contained in here
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include <cassert>
#include <limits>

View File

@ -24,7 +24,7 @@ distribution.
#ifndef __PolyVox_ArraySizesImpl_H__
#define __PolyVox_ArraySizesImpl_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{
@ -56,6 +56,6 @@ namespace PolyVox
};
}//namespace PolyVox
#include "PolyVoxImpl/ArraySizesImpl.inl"
#include "Impl/ArraySizesImpl.inl"
#endif //__PolyVox_ArraySizesImpl_H__

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Block_H__
#define __PolyVox_Block_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Vector.h"
#include <limits>
@ -73,6 +73,6 @@ namespace PolyVox
};
}
#include "PolyVoxImpl/Block.inl"
#include "Impl/Block.inl"
#endif

View File

@ -21,7 +21,7 @@ freely, subject to the following restrictions:
distribution.
*******************************************************************************/
#include "PolyVoxImpl/Utility.h"
#include "Impl/Utility.h"
#include "PolyVoxCore/Vector.h"
#include <cassert>

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_MarchingCubeTables_H__
#define __PolyVox_MarchingCubeTables_H__
#include "PolyVoxCore/PolyVoxImpl/TypeDef.h"
#include "PolyVoxCore/Impl/TypeDef.h"
namespace PolyVox
{

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_RandomUnitVectors_H__
#define __PolyVox_RandomUnitVectors_H__
#include "PolyVoxCore/PolyVoxImpl/TypeDef.h"
#include "PolyVoxCore/Impl/TypeDef.h"
#include "PolyVoxCore/Vector.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_RandomVectors_H__
#define __PolyVox_RandomVectors_H__
#include "PolyVoxCore/PolyVoxImpl/TypeDef.h"
#include "PolyVoxCore/Impl/TypeDef.h"
#include "PolyVoxCore/Vector.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_SubArray_H__
#define __PolyVox_SubArray_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{
@ -83,6 +83,6 @@ namespace PolyVox
};
}//namespace PolyVox
#include "PolyVoxImpl/SubArray.inl"
#include "Impl/SubArray.inl"
#endif //__PolyVox_SubArray_H__

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Utility_H__
#define __PolyVox_Utility_H__
#include "PolyVoxCore/PolyVoxImpl/TypeDef.h"
#include "PolyVoxCore/Impl/TypeDef.h"
#include <cassert>

View File

@ -25,7 +25,7 @@ freely, subject to the following restrictions:
#define __PolyVox_LargeVolume_H__
#include "PolyVoxCore/BaseVolume.h"
#include "PolyVoxImpl/Block.h"
#include "Impl/Block.h"
#include "PolyVoxCore/Log.h"
#include "PolyVoxCore/Region.h"
#include "PolyVoxCore/Vector.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Log_H__
#define __PolyVox_Log_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include <string>

View File

@ -24,8 +24,8 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_SurfaceExtractor_H__
#define __PolyVox_SurfaceExtractor_H__
#include "PolyVoxImpl/MarchingCubesTables.h"
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/MarchingCubesTables.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Array.h"
#include "PolyVoxCore/SurfaceMesh.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Material_H__
#define __PolyVox_Material_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/DefaultIsQuadNeeded.h" //we'll specialise this function for this voxel type

View File

@ -27,7 +27,7 @@ freely, subject to the following restrictions:
#include "PolyVoxCore/DefaultIsQuadNeeded.h" //we'll specialise this function for this voxel type
#include "PolyVoxCore/DefaultMarchingCubesController.h" //We'll specialise the controller contained in here
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_ForwardDeclarations_H__
#define __PolyVox_ForwardDeclarations_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Region_H__
#define __PolyVox_Region_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Vector.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_SimpleVolume_H__
#define __PolyVox_SimpleVolume_H__
#include "PolyVoxImpl/Utility.h"
#include "Impl/Utility.h"
#include "PolyVoxCore/BaseVolume.h"
#include "PolyVoxCore/Log.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_SurfaceMesh_H__
#define __PolyVox_SurfaceMesh_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Region.h"
#include "PolyVoxCore/VertexTypes.h" //Should probably do away with this on in the future...

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_Vector_H__
#define __PolyVox_Vector_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include <cassert>
#include <cmath>

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_SurfaceVertex_H__
#define __PolyVox_SurfaceVertex_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
#include "PolyVoxCore/Vector.h"

View File

@ -24,7 +24,7 @@ freely, subject to the following restrictions:
#ifndef __PolyVox_VoxelFilters_H__
#define __PolyVox_VoxelFilters_H__
#include "PolyVoxImpl/TypeDef.h"
#include "Impl/TypeDef.h"
namespace PolyVox
{