Searched refs:vfov (Results 1 – 6 of 6) sorted by relevance
/packages/services/Car/cpp/evs/support_library/ |
D | ConfigManager.cpp | 143 float vfov = node.get("vfov", 0).asFloat(); in initialize() local 167 if (vfov > 179.0f) { in initialize() 168 printf("Pathological horizontal field of view %f clamped to 179 degrees\n", vfov); in initialize() 169 vfov = 179.0f; in initialize() 171 if (vfov < 1.0f) { in initialize() 172 printf("Pathological horizontal field of view %f clamped to 1 degree\n", vfov); in initialize() 173 vfov = 1.0f; in initialize() 184 info.vfov = vfov * kDegreesToRadians; in initialize()
|
D | ConfigManager.h | 36 float vfov = 0; // radians member
|
/packages/services/Car/cpp/evs/apps/default/ |
D | ConfigManager.cpp | 149 float vfov = node.get("vfov", 0).asFloat(); in initialize() local 176 if (vfov > 179.0f) { in initialize() 177 printf("Pathological horizontal field of view %f clamped to 179 degrees\n", vfov); in initialize() 178 vfov = 179.0f; in initialize() 180 if (vfov < 1.0f) { in initialize() 181 printf("Pathological horizontal field of view %f clamped to 1 degree\n", vfov); in initialize() 182 vfov = 1.0f; in initialize() 194 info.vfov = vfov * kDegreesToRadians; in initialize()
|
D | RenderTopView.cpp | 53 static android::mat4 perspective(float hfov, float vfov, float near, float far) { in perspective() argument 55 const float tanHalfFovY = tanf(vfov * 0.5f); in perspective() 301 … const android::mat4 P = perspective(cam.info.hfov, cam.info.vfov, cam.info.position[Z], maxRange); in renderCameraOntoGroundPlane()
|
D | ConfigManager.h | 36 float vfov = 0; // radians member
|
D | config.json.readme | 43 "vfov" :103, // Vertical field of view in degrees
|