DeviceParams constructor

const DeviceParams({
  1. required String vendor,
  2. required String model,
  3. double screenToLensDistance = 0.042,
  4. double interLensDistance = 0.064,
  5. double trayToLensDistance = 0.035,
  6. List<double> distortionCoefficients = const [0.441, 0.156],
  7. List<double> fovAngles = const [40, 40, 40, 40],
})

Implementation

const DeviceParams({
  required this.vendor,
  required this.model,
  this.screenToLensDistance = 0.042,
  this.interLensDistance = 0.064,
  this.trayToLensDistance = 0.035,
  this.distortionCoefficients = const [0.441, 0.156],
  this.fovAngles = const [40, 40, 40, 40],
});