- Cal3D 0.11 API Reference - |
00001 //****************************************************************************// 00002 // coremorphanimation.h // 00003 // Copyright (C) 2003 Steven Geens // 00004 //****************************************************************************// 00005 // This library is free software; you can redistribute it and/or modify it // 00006 // under the terms of the GNU Lesser General Public License as published by // 00007 // the Free Software Foundation; either version 2.1 of the License, or (at // 00008 // your option) any later version. // 00009 //****************************************************************************// 00010 00011 #ifndef CAL_COREMORPHANIMATION_H 00012 #define CAL_COREMOPRHANIMATION_H 00013 00014 #include "cal3d/global.h" 00015 00016 class CAL3D_API CalCoreMorphAnimation 00017 { 00018 public: 00019 CalCoreMorphAnimation() { } 00020 ~CalCoreMorphAnimation() { } 00021 00022 bool addMorphTarget(int coreMeshID,int morphTargetID); 00023 std::vector<int>& getVectorCoreMeshID(); 00024 std::vector<int>& getVectorMorphTargetID(); 00025 00026 private: 00027 std::vector<int> m_vectorCoreMeshID; 00028 std::vector<int> m_vectorMorphTargetID; 00029 }; 00030 00031 #endif 00032 00033 //****************************************************************************//