Searched defs:FieldOfView (Results 1 - 1 of 1) sorted by relevance

/frameworks/native/libs/vr/libdvrcommon/include/private/dvr/
H A Dfield_of_view.h13 // Together with a near and far plane, a FieldOfView forms the frustum of an
15 class FieldOfView { class in namespace:android::dvr
19 FieldOfView() : left_(0.0f), right_(0.0f), bottom_(0.0f), top_(0.0f) {} function in class:android::dvr::FieldOfView
21 // Constructs a FieldOfView from four angles.
22 FieldOfView(float left, float right, float bottom, float top) function in class:android::dvr::FieldOfView
25 explicit FieldOfView(const float* fov) function in class:android::dvr::FieldOfView
26 : FieldOfView(fov[0], fov[1], fov[2], fov[3]) {}
71 static FieldOfView FromProjectionMatrix(
81 return FieldOfView(std::atan(-l), std::atan(r), std::atan(-b),

Completed in 101 milliseconds