Loading [MathJax]/extensions/TeX/AMSsymbols.js
Radium Engine  1.5.26
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Cage.hpp
1#pragma once
2
3#include <Core/Animation/HandleArray.hpp>
4#include <Core/Containers/VectorArray.hpp>
5#include <Core/CoreMacros.hpp>
6#include <Core/RaCore.hpp>
7#include <Core/Types.hpp>
8
9namespace Ra {
10namespace Core {
11namespace Animation {
12
21class RA_CORE_API Cage : public HandleArray
22{
23 public:
24 Cage();
25 explicit Cage( const uint n );
26 Cage( const Cage& cage );
27
29 ~Cage();
30
31 void clear() override;
32
37};
38
39} // namespace Animation
40} // Namespace Core
41} // Namespace Ra
VectorArray< Ra::Core::Vector3ui > m_triangle
Definition Cage.hpp:36
This class implements ContainerIntrospectionInterface for AlignedStdVector.
hepler function to manage enum as underlying types in VariableSet
Definition Cage.cpp:4