Loading [MathJax]/extensions/TeX/AMSmath.js
Radium Engine  1.5.24
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Cage.cpp
1#include <Core/Animation/Cage.hpp>
2#include <Core/Animation/Pose.hpp>
3
4namespace Ra {
5namespace Core {
6namespace Animation {
7
8Cage::Cage() : HandleArray(), m_triangle() {}
9Cage::Cage( const uint n ) : HandleArray( n ), m_triangle() {}
10Cage::Cage( const Cage& cage ) : HandleArray( cage ), m_triangle( cage.m_triangle ) {}
11
13
15 m_pose.clear();
17}
18
19} // namespace Animation
20} // Namespace Core
21} // Namespace Ra
void clear() override
Definition Cage.cpp:14
VectorArray< Ra::Core::Vector3ui > m_triangle
Definition Cage.hpp:36
~Cage()
DESTRUCTOR.
Definition Cage.cpp:12
T clear(T... args)
hepler function to manage enum as underlying types in VariableSet
Definition Cage.cpp:4