Banuba SDK
libs
types
bnb
types
interfaces
action_units.hpp
Go to the documentation of this file.
1
/// \file
2
/// \addtogroup Types
3
/// @{
4
///
5
// AUTOGENERATED FILE - DO NOT MODIFY!
6
// This file generated by Djinni from types.djinni
7
8
#pragma once
9
10
#include <utility>
11
#include <vector>
12
13
namespace
bnb {
namespace
interfaces {
14
15
/**for order of values in action units array see action_units_indices enum */
16
struct
action_units
final {
17
float
rot_x;
18
float
rot_y;
19
float
rot_z;
20
std::vector<float> units;
21
22
action_units
(
float
rot_x_,
23
float
rot_y_,
24
float
rot_z_,
25
std::vector<float> units_)
26
: rot_x(std::move(rot_x_))
27
, rot_y(std::move(rot_y_))
28
, rot_z(std::move(rot_z_))
29
, units(std::move(units_))
30
{}
31
};
32
33
} }
// namespace bnb::interfaces
34
/// @}
35
bnb::interfaces::action_units
for order of values in action units array see action_units_indices enum
Definition:
action_units.hpp:16
Generated by
1.8.20