metaforce/Runtime/Graphics/CVertexMorphEffect.hpp

22 lines
504 B
C++
Raw Normal View History

2016-04-13 06:07:23 +00:00
#ifndef __URDE_CVERTEXMORPHEFFECT_HPP__
#define __URDE_CVERTEXMORPHEFFECT_HPP__
#include "CToken.hpp"
#include "Character/CPoseAsTransforms.hpp"
namespace urde
{
class CSkinRules;
class CVertexMorphEffect
{
public:
void MorphVertices(std::vector<std::pair<zeus::CVector3f, zeus::CVector3f>>& vn,
const float* magnitudes, const TLockedToken<CSkinRules>& skinRules,
const CPoseAsTransforms& pose) const;
};
}
2016-04-13 06:07:23 +00:00
#endif // __URDE_CVERTEXMORPHEFFECT_HPP__