Work on mesh decimation.

This commit is contained in:
David Williams
2007-09-07 23:13:10 +00:00
parent 49846fa5d9
commit c2194378cd
11 changed files with 248 additions and 32 deletions

View File

@ -20,6 +20,7 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
#define __IntegralVector3_H__
#include <OgrePrerequisites.h>
#include <OgreVector3.h>
namespace Ogre
{
@ -55,7 +56,12 @@ namespace Ogre
return (z < rhs.z);
else
return false; //They are equal
}
}
Vector3 toOgreVector3(void)
{
return Vector3(Real(x), Real(y), Real(z));
}
Type x;
Type y;