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

@ -2,6 +2,8 @@
#include "SurfaceTriangle.h"
#include "SurfaceVertex.h"
#include <sstream>
namespace Ogre
{
SurfaceEdge::SurfaceEdge(const SurfaceVertexIterator& targetToSet,const SurfaceVertexIterator& sourceToSet)
@ -10,10 +12,10 @@ namespace Ogre
source = sourceToSet;
}
std::string SurfaceEdge::toString(void)
std::string SurfaceEdge::tostring(void)
{
std::stringstream ss;
ss << "SurfaceEdge: Target Vertex = " << target->toString() << "Source Vertex = " << source->toString();
ss << "SurfaceEdge: Target Vertex = " << target->tostring() << "Source Vertex = " << source->tostring();
return ss.str();
}