polyvox/source/AbstractSurfacePatch.cpp
2007-10-07 16:33:53 +00:00

22 lines
393 B
C++

#include "AbstractSurfacePatch.h"
namespace Ogre
{
AbstractSurfacePatch::AbstractSurfacePatch()
{
}
AbstractSurfacePatch::~AbstractSurfacePatch()
{
}
SurfaceVertexIterator AbstractSurfacePatch::getVerticesBegin(void)
{
return m_listVertices.begin();
}
SurfaceVertexIterator AbstractSurfacePatch::getVerticesEnd(void)
{
return m_listVertices.end();
}
}