Loading [MathJax]/extensions/TeX/AMSmath.js
Radium Engine  1.5.0
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Modules Pages
HandleWeight.hpp
1 #pragma once
2 
3 #include <Core/Containers/AlignedStdVector.hpp>
4 #include <Core/Types.hpp>
5 #include <map>
6 
7 namespace Ra {
8 namespace Core {
9 namespace Animation {
10 
14 using SingleWeight = std::pair<uint, Scalar>;
15 
19 using VertexWeight = AlignedStdVector<SingleWeight>;
20 
24 using MeshWeight = AlignedStdVector<VertexWeight>;
25 
34 using WeightMatrix = Ra::Core::Sparse;
35 
36 } // namespace Animation
37 } // Namespace Core
38 } // Namespace Ra
Definition: Cage.cpp:3