Banuba SDK
camera_position.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 
13 namespace bnb { namespace interfaces {
14 
15 struct camera_position final {
16  std::vector<float> model_view_m;
17  std::vector<float> projection_m;
18 
19  camera_position(std::vector<float> model_view_m_,
20  std::vector<float> projection_m_)
21  : model_view_m(std::move(model_view_m_))
22  , projection_m(std::move(projection_m_))
23  {}
24 };
25 
26 } } // namespace bnb::interfaces
27 /// @}
28 
bnb::interfaces::camera_position
Definition: camera_position.hpp:15