Tiding up...

This commit is contained in:
David Williams
2008-02-11 20:34:45 +00:00
parent d8dacdadc3
commit abb3def1e7
6 changed files with 12 additions and 32 deletions

View File

@ -1,19 +1,14 @@
#ifndef __IndexedSurfacePatch_H__
#define __IndexedSurfacePatch_H__
#include "boost/cstdint.hpp"
//#include <set>
//#include <list>
#include <vector>
#include "boost/cstdint.hpp"
#include "Constants.h"
#include "SurfaceTypes.h"
#include "SurfaceVertex.h"
#include "TypeDef.h"
#include "VolumeIterator.h"
namespace PolyVox
{

View File

@ -26,16 +26,12 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#include "Constants.h"
#include "IndexedSurfacePatch.h"
#include "SurfaceTriangle.h"
//#include "AbstractSurfacePatch.h"
#include "TypeDef.h"
#include "Volume.h"
#include "SurfaceVertex.h"
#include "RegionGeometry.h"
#include "Vector.h"
#include <set>
namespace PolyVox
{
enum NormalGenerationMethod

View File

@ -37,11 +37,13 @@ namespace PolyVox
//Volume interface
public:
Volume();
Volume(const Volume& rhs);
~Volume();
~Volume();
private:
Volume(const Volume& rhs);
Volume& operator=(const Volume& rhs);
public:
Block* getBlock(boost::uint16_t index);
bool containsPoint(Vector3DFloat pos, float boundary);