Banuba SDK
orientable.hpp
1 #pragma once
2 
3 #include <bnb/types/base_types.hpp>
4 
5 namespace bnb::player_api
6 {
7 
8  class orientable
9  {
10  public:
11  virtual void set_orientation(orientation orient, bool mirroring = false) = 0;
12  }; // class orientable
13 
14 } // namespace bnb::player_api
bnb::camera_orientation
camera_orientation
camera image layout is top-left, 0 orientation is portrait, rotation is counterclockwise
Definition: base_types.hpp:26
bnb::player_api::orientable
Definition: orientable.hpp:8