Tiding up...
This commit is contained in:
@ -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
|
||||
{
|
||||
|
@ -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
|
||||
|
@ -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);
|
||||
|
Reference in New Issue
Block a user