blob: 01f605085fa420e0429dae8eeb4a529b36e40036 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#include "opticaldesign.h"
// qt
#include <QSize>
void OpticalDesign::calculate() const
{
const auto F = get_focalDistanceMm();
const auto w = get_sensorPixelsWidth();
const auto h = get_sensorPixelsHeight();
const auto wMm = get_sensorWidthMm();
const auto hMm = get_sensorHeightMm();
const auto oAngle = get_opticalAxisAngleDegrees();
}
|