Files
android_development/tools/a3dconvert/ColladaConditioner.h
Alex Sakhartchouk 8f6a33136e Adding ability to strip geometry from collada files.
Fixing element/type creation. Build test.

Change-Id: I9f7378db3ce2a3ad102cde4de672648fbfcb6754
2011-08-17 16:43:47 -07:00

31 lines
825 B
C++

/*
* Copyright 2006 Sony Computer Entertainment Inc.
*
* Licensed under the MIT Open Source License, for details please see license.txt or the website
* http://www.opensource.org/licenses/mit-license.php
*
*/
#ifndef COLLADA_CONDITIONER
#define COLLADA_CONDITIONER
#include <dae.h>
#include <dom/domConstants.h>
#include <dom/domCOLLADA.h>
class ColladaConditioner {
private:
unsigned int getMaxOffset( domInputLocalOffset_Array &input_array );
void createTrianglesFromPolylist( domMesh *thisMesh, domPolylist *thisPolylist );
void createTrianglesFromPolygons( domMesh *thisMesh, domPolygons *thisPolygons );
public:
bool triangulate(DAE *dae);
bool triangulate(const char *inputFile);
bool stripGeometry(DAE *dae);
bool stripGeometry(const char *inputFile);
};
#endif //COLLADA_CONDITIONER