Removed more Ogre stuff from core library...

This commit is contained in:
David Williams
2008-02-10 11:22:10 +00:00
parent 9138ae51da
commit a518afff41
13 changed files with 26 additions and 29 deletions

View File

@ -1,10 +1,10 @@
#include <sstream>
#include "Constants.h"
#include "SurfaceVertex.h"
#include "SurfaceTriangle.h"
#include "SurfaceEdge.h"
#include "OgreStringConverter.h"
namespace Ogre
{
SurfaceVertex::SurfaceVertex()
@ -73,7 +73,7 @@ namespace Ogre
normal.normalise();
}
std::string SurfaceVertex::toString(void) const
std::string SurfaceVertex::tostring(void) const
{
std::stringstream ss;
ss << "SurfaceVertex: Position = (" << position.x << "," << position.y << "," << position.z << "), Normal = " << normal;