Merge branch 'master' into fixJoinVerticesProcess
commit
19dec716d3
|
@ -154,7 +154,6 @@ private:
|
||||||
const unsigned int column;
|
const unsigned int column;
|
||||||
};
|
};
|
||||||
|
|
||||||
// XXX should use C++11's unique_ptr - but assimp's need to keep working with 03
|
|
||||||
typedef const Token* TokenPtr;
|
typedef const Token* TokenPtr;
|
||||||
typedef std::vector< TokenPtr > TokenList;
|
typedef std::vector< TokenPtr > TokenList;
|
||||||
|
|
||||||
|
|
|
@ -566,6 +566,9 @@ struct aiAnimMesh {
|
||||||
/** @brief Enumerates the methods of mesh morphing supported by Assimp.
|
/** @brief Enumerates the methods of mesh morphing supported by Assimp.
|
||||||
*/
|
*/
|
||||||
enum aiMorphingMethod {
|
enum aiMorphingMethod {
|
||||||
|
/** Morphing method to be determined */
|
||||||
|
aiMorphingMethod_UNKNOWN = 0x0,
|
||||||
|
|
||||||
/** Interpolation between morph targets */
|
/** Interpolation between morph targets */
|
||||||
aiMorphingMethod_VERTEX_BLEND = 0x1,
|
aiMorphingMethod_VERTEX_BLEND = 0x1,
|
||||||
|
|
||||||
|
@ -747,7 +750,7 @@ struct aiMesh {
|
||||||
* Method of morphing when anim-meshes are specified.
|
* Method of morphing when anim-meshes are specified.
|
||||||
* @see aiMorphingMethod to learn more about the provided morphing targets.
|
* @see aiMorphingMethod to learn more about the provided morphing targets.
|
||||||
*/
|
*/
|
||||||
unsigned int mMethod;
|
enum aiMorphingMethod mMethod;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* The bounding box.
|
* The bounding box.
|
||||||
|
@ -778,7 +781,7 @@ struct aiMesh {
|
||||||
mMaterialIndex(0),
|
mMaterialIndex(0),
|
||||||
mNumAnimMeshes(0),
|
mNumAnimMeshes(0),
|
||||||
mAnimMeshes(nullptr),
|
mAnimMeshes(nullptr),
|
||||||
mMethod(0),
|
mMethod(aiMorphingMethod_UNKNOWN),
|
||||||
mAABB(),
|
mAABB(),
|
||||||
mTextureCoordsNames(nullptr) {
|
mTextureCoordsNames(nullptr) {
|
||||||
for (unsigned int a = 0; a < AI_MAX_NUMBER_OF_TEXTURECOORDS; ++a) {
|
for (unsigned int a = 0; a < AI_MAX_NUMBER_OF_TEXTURECOORDS; ++a) {
|
||||||
|
|
Loading…
Reference in New Issue