- Cal3D 0.11 API Reference -

coremorphanimation.h
1//****************************************************************************//
2// coremorphanimation.h //
3// Copyright (C) 2003 Steven Geens //
4//****************************************************************************//
5// This library is free software; you can redistribute it and/or modify it //
6// under the terms of the GNU Lesser General Public License as published by //
7// the Free Software Foundation; either version 2.1 of the License, or (at //
8// your option) any later version. //
9//****************************************************************************//
10
11#ifndef CAL_COREMORPHANIMATION_H
12#define CAL_COREMOPRHANIMATION_H
13
14#include "cal3d/global.h"
15
16class CAL3D_API CalCoreMorphAnimation
17{
18public:
21
22 bool addMorphTarget(int coreMeshID,int morphTargetID);
23 std::vector<int>& getVectorCoreMeshID();
24 std::vector<int>& getVectorMorphTargetID();
25
26private:
27 std::vector<int> m_vectorCoreMeshID;
28 std::vector<int> m_vectorMorphTargetID;
29};
30
31#endif
32
33//****************************************************************************//
Definition: coremorphanimation.h:17

Generated by The Cal3D Team with Doxygen 1.9.4