Moved all headers from 'PolyVoxCore' to 'PolyVox', as we no longer have the core/util distinction.

This commit is contained in:
David Williams
2015-02-07 17:26:36 +01:00
parent 16a75d0606
commit 049a77cd0c
83 changed files with 215 additions and 215 deletions

View File

@ -26,69 +26,69 @@ PROJECT(PolyVoxHeaders)
#Projects headers files
SET(CORE_INC_FILES
PolyVoxCore/AmbientOcclusionCalculator.h
PolyVoxCore/AmbientOcclusionCalculator.inl
PolyVoxCore/Array.h
PolyVoxCore/AStarPathfinder.h
PolyVoxCore/AStarPathfinder.inl
PolyVoxCore/BaseVolume.h
PolyVoxCore/BaseVolume.inl
PolyVoxCore/BaseVolumeSampler.inl
PolyVoxCore/CubicSurfaceExtractor.h
PolyVoxCore/CubicSurfaceExtractor.inl
PolyVoxCore/DefaultIsQuadNeeded.h
PolyVoxCore/DefaultMarchingCubesController.h
PolyVoxCore/Density.h
PolyVoxCore/FilePager.h
PolyVoxCore/GradientEstimators.h
PolyVoxCore/GradientEstimators.inl
PolyVoxCore/Interpolation.h
PolyVoxCore/IteratorController.h
PolyVoxCore/IteratorController.inl
PolyVoxCore/LargeVolume.h
PolyVoxCore/LowPassFilter.h
PolyVoxCore/LowPassFilter.inl
PolyVoxCore/MarchingCubesSurfaceExtractor.h
PolyVoxCore/MarchingCubesSurfaceExtractor.inl
PolyVoxCore/Material.h
PolyVoxCore/MaterialDensityPair.h
PolyVoxCore/Mesh.h
PolyVoxCore/Mesh.inl
PolyVoxCore/PagedVolume.h
PolyVoxCore/PagedVolume.inl
PolyVoxCore/PagedVolumeChunk.inl
PolyVoxCore/PagedVolumeSampler.inl
PolyVoxCore/PolyVoxForwardDeclarations.h
PolyVoxCore/Picking.h
PolyVoxCore/Picking.inl
PolyVoxCore/RawVolume.h
PolyVoxCore/RawVolume.inl
PolyVoxCore/RawVolumeSampler.inl
PolyVoxCore/Raycast.h
PolyVoxCore/Raycast.inl
PolyVoxCore/Region.h
PolyVoxCore/Region.inl
PolyVoxCore/SimpleVolume.h
PolyVoxCore/Vector.h
PolyVoxCore/Vector.inl
PolyVoxCore/Vertex.h
PolyVoxCore/VolumeResampler.h
PolyVoxCore/VolumeResampler.inl
PolyVoxCore/VoxelFilters.h
PolyVoxCore/VoxelFilters.inl
PolyVox/AmbientOcclusionCalculator.h
PolyVox/AmbientOcclusionCalculator.inl
PolyVox/Array.h
PolyVox/AStarPathfinder.h
PolyVox/AStarPathfinder.inl
PolyVox/BaseVolume.h
PolyVox/BaseVolume.inl
PolyVox/BaseVolumeSampler.inl
PolyVox/CubicSurfaceExtractor.h
PolyVox/CubicSurfaceExtractor.inl
PolyVox/DefaultIsQuadNeeded.h
PolyVox/DefaultMarchingCubesController.h
PolyVox/Density.h
PolyVox/FilePager.h
PolyVox/GradientEstimators.h
PolyVox/GradientEstimators.inl
PolyVox/Interpolation.h
PolyVox/IteratorController.h
PolyVox/IteratorController.inl
PolyVox/LargeVolume.h
PolyVox/LowPassFilter.h
PolyVox/LowPassFilter.inl
PolyVox/MarchingCubesSurfaceExtractor.h
PolyVox/MarchingCubesSurfaceExtractor.inl
PolyVox/Material.h
PolyVox/MaterialDensityPair.h
PolyVox/Mesh.h
PolyVox/Mesh.inl
PolyVox/PagedVolume.h
PolyVox/PagedVolume.inl
PolyVox/PagedVolumeChunk.inl
PolyVox/PagedVolumeSampler.inl
PolyVox/PolyVoxForwardDeclarations.h
PolyVox/Picking.h
PolyVox/Picking.inl
PolyVox/RawVolume.h
PolyVox/RawVolume.inl
PolyVox/RawVolumeSampler.inl
PolyVox/Raycast.h
PolyVox/Raycast.inl
PolyVox/Region.h
PolyVox/Region.inl
PolyVox/SimpleVolume.h
PolyVox/Vector.h
PolyVox/Vector.inl
PolyVox/Vertex.h
PolyVox/VolumeResampler.h
PolyVox/VolumeResampler.inl
PolyVox/VoxelFilters.h
PolyVox/VoxelFilters.inl
)
SET(IMPL_INC_FILES
PolyVoxCore/Impl/AStarPathfinderImpl.h
PolyVoxCore/Impl/Config.h
PolyVoxCore/Impl/ErrorHandling.h
PolyVoxCore/Impl/Logging.h
PolyVoxCore/Impl/MarchingCubesTables.h
PolyVoxCore/Impl/RandomUnitVectors.h
PolyVoxCore/Impl/RandomVectors.h
PolyVoxCore/Impl/Timer.h
PolyVoxCore/Impl/TypeDef.h
PolyVoxCore/Impl/Utility.h
PolyVox/Impl/AStarPathfinderImpl.h
PolyVox/Impl/Config.h
PolyVox/Impl/ErrorHandling.h
PolyVox/Impl/Logging.h
PolyVox/Impl/MarchingCubesTables.h
PolyVox/Impl/RandomUnitVectors.h
PolyVox/Impl/RandomVectors.h
PolyVox/Impl/Timer.h
PolyVox/Impl/TypeDef.h
PolyVox/Impl/Utility.h
)
#NOTE: The following line should be uncommented when building shared libs.