Banuba SDK
Loading...
Searching...
No Matches
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 was generated by Djinni from types.djinni
7
8#pragma once
9
10#include <utility>
11#include <vector>
12
13namespace bnb { namespace interfaces {
14
15/**for order of values in action units array see action_units_indices enum */
16struct 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
for order of values in action units array see action_units_indices enum