VL53L7X get Point Cloud
Hi, I'm trying to create a 4x4 point cloud using a VL53L7CX-Sensor. I already got the x, y and z, but I am not sure if the values are right. My approach:
*iter_x = static_cast<float>(kMillimeterToMeter * cos(w * fovPerPixel - kFov / 2.0f - DegToRad(90.0f)) * depth);
*iter_y = static_cast<float>(kMillimeterToMeter * sin(h * fovPerPixel - kFov / 2.0f) * depth);
*iter_z = static_cast<float>(kMillimeterToMeter * depth);

But the points doesn't seem right...
Any help would be appreciated!
