Searched refs:hfov (Results 1 – 6 of 6) sorted by relevance
/packages/services/Car/cpp/evs/support_library/ |
D | ConfigManager.cpp | 137 float hfov = node.get("hfov", 0).asFloat(); in initialize() local 154 if (hfov > 179.0f) { in initialize() 155 printf("Pathological horizontal field of view %f clamped to 179 degrees\n", hfov); in initialize() 156 hfov = 179.0f; in initialize() 158 if (hfov < 1.0f) { in initialize() 159 printf("Pathological horizontal field of view %f clamped to 1 degree\n", hfov); in initialize() 160 hfov = 1.0f; in initialize() 178 info.hfov = hfov * kDegreesToRadians; in initialize()
|
D | ConfigManager.h | 35 float hfov = 0; // radians member
|
/packages/services/Car/cpp/evs/apps/default/src/ |
D | ConfigManager.cpp | 140 float hfov = node.get("hfov", 0).asFloat(); in initialize() local 160 if (hfov > 179.0f) { in initialize() 161 printf("Pathological horizontal field of view %f clamped to 179 degrees\n", hfov); in initialize() 162 hfov = 179.0f; in initialize() 164 if (hfov < 1.0f) { in initialize() 165 printf("Pathological horizontal field of view %f clamped to 1 degree\n", hfov); in initialize() 166 hfov = 1.0f; in initialize() 185 info.hfov = hfov * kDegreesToRadians; in initialize()
|
D | RenderTopView.cpp | 52 android::mat4 perspective(float hfov, float vfov, float near, float far) { in perspective() argument 53 const float tanHalfFovX = tanf(hfov * 0.5f); in perspective() 284 perspective(cam.info.hfov, cam.info.vfov, cam.info.position[Z], maxRange); in renderCameraOntoGroundPlane()
|
/packages/services/Car/cpp/evs/apps/default/inc/ |
D | ConfigManager.h | 34 float hfov = 0; // radians member
|
/packages/services/Car/cpp/evs/apps/default/res/ |
D | config.json.readme | 42 "hfov" : 125, // Horizontal field of view in degrees
|