Renamed PolyVoxSceneManager to VolumeChangeTracker

This commit is contained in:
David Williams
2008-05-24 18:58:32 +00:00
parent ff39fed7f8
commit c4debf2ca7
4 changed files with 26 additions and 26 deletions

View File

@ -37,7 +37,7 @@ namespace PolyVox
class IndexedSurfacePatch;
class IntegrealVector3;
template <typename VoxelType> class LinearVolume;
class PolyVoxSceneManager;
class VolumeChangeTracker;
class RegionGeometry;
class SurfaceVertex;
template <boost::uint32_t Size, typename Type> class Vector;

View File

@ -19,8 +19,8 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
******************************************************************************/
#pragma endregion
#ifndef __PolyVox_PolyVoxSceneManager_H__
#define __PolyVox_PolyVoxSceneManager_H__
#ifndef __PolyVox_VolumeChangeTracker_H__
#define __PolyVox_VolumeChangeTracker_H__
#include <list>
@ -33,12 +33,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
namespace PolyVox
{
/// Voxel scene manager
class POLYVOX_API PolyVoxSceneManager
class POLYVOX_API VolumeChangeTracker
{
public:
//Constructors, etc
PolyVoxSceneManager();
~PolyVoxSceneManager();
VolumeChangeTracker();
~VolumeChangeTracker();
//Getters
boost::uint8_t getMaterialIndexAt(boost::uint16_t uX, boost::uint16_t uY, boost::uint16_t uZ);