Removed more Ogre stuff from core library...
This commit is contained in:
@ -6,6 +6,8 @@
|
||||
//#include <set>
|
||||
//#include <list>
|
||||
|
||||
#include <vector>
|
||||
|
||||
#include "Constants.h"
|
||||
#include "IntegralVector3.h"
|
||||
#include "SurfaceTypes.h"
|
||||
|
@ -21,8 +21,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
#include "boost/cstdint.hpp"
|
||||
|
||||
#include <OgreVector3.h>
|
||||
|
||||
#include "Vector.hpp"
|
||||
|
||||
namespace Ogre
|
||||
|
@ -19,9 +19,9 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
#ifndef __PolyVoxSceneManager_H__
|
||||
#define __PolyVoxSceneManager_H__
|
||||
|
||||
#include "boost/cstdint.hpp"
|
||||
#include <list>
|
||||
|
||||
#include "OgreSceneManager.h"
|
||||
#include "boost/cstdint.hpp"
|
||||
|
||||
#include "Constants.h"
|
||||
#include "IndexedSurfacePatch.h"
|
||||
@ -55,7 +55,7 @@ namespace Ogre
|
||||
|
||||
//Getters
|
||||
boost::uint8_t getMaterialIndexAt(boost::uint16_t uX, boost::uint16_t uY, boost::uint16_t uZ);
|
||||
const String& getTypeName(void) const;
|
||||
const std::string& getTypeName(void) const;
|
||||
boost::uint16_t getSideLength(void);
|
||||
|
||||
|
||||
@ -66,7 +66,7 @@ namespace Ogre
|
||||
std::list<RegionGeometry> getChangedRegionGeometry(void);
|
||||
|
||||
void setAllUpToDateFlagsTo(bool newUpToDateValue);
|
||||
void createSphereAt(Vector3DFloat centre, Real radius, boost::uint8_t value, bool painting);
|
||||
void createSphereAt(Vector3DFloat centre, float radius, boost::uint8_t value, bool painting);
|
||||
|
||||
void generateLevelVolume(void);
|
||||
|
||||
|
@ -33,7 +33,7 @@ namespace Ogre
|
||||
friend bool operator < (const SurfaceEdge& lhs, const SurfaceEdge& rhs);
|
||||
|
||||
|
||||
std::string toString(void);
|
||||
std::string tostring(void);
|
||||
|
||||
bool isDegenerate(void);
|
||||
|
||||
|
@ -36,7 +36,7 @@ namespace Ogre
|
||||
|
||||
void setEdge(const SurfaceEdgeIterator& edgeToSet);
|
||||
|
||||
//std::string toString(void);
|
||||
//std::string tostring(void);
|
||||
|
||||
private:
|
||||
SurfaceEdgeIterator edge;
|
||||
|
@ -22,8 +22,6 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
||||
|
||||
#include "TypeDef.h"
|
||||
|
||||
|
||||
#include "OgreVector3.h"
|
||||
#include "IntegralVector3.h"
|
||||
#include "SurfaceTypes.h"
|
||||
|
||||
@ -50,7 +48,7 @@ namespace Ogre
|
||||
void setMaterial(float materialToSet);
|
||||
void setNormal(const Vector3DFloat& normalToSet);
|
||||
|
||||
std::string toString(void) const;
|
||||
std::string tostring(void) const;
|
||||
|
||||
private:
|
||||
UIntVector3 position;
|
||||
|
Reference in New Issue
Block a user