14 namespace bnb {
namespace interfaces {
17 int32_t hasCameraPosition;
32 std::vector<float> model_view_m;
33 std::vector<float> projection_m;
50 std::vector<float> model_view_m_,
51 std::vector<float> projection_m_)
52 : hasCameraPosition(std::move(hasCameraPosition_))
53 , frustum_l(std::move(frustum_l_))
54 , frustum_r(std::move(frustum_r_))
55 , frustum_t(std::move(frustum_t_))
56 , frustum_b(std::move(frustum_b_))
57 , frustum_n(std::move(frustum_n_))
58 , frustum_f(std::move(frustum_f_))
59 , model_r_x(std::move(model_r_x_))
60 , model_r_y(std::move(model_r_y_))
61 , model_r_z(std::move(model_r_z_))
62 , model_t_x(std::move(model_t_x_))
63 , model_t_y(std::move(model_t_y_))
64 , model_t_z(std::move(model_t_z_))
65 , head_center_x(std::move(head_center_x_))
66 , head_center_y(std::move(head_center_y_))
67 , model_view_m(std::move(model_view_m_))
68 , projection_m(std::move(projection_m_))