VrDeviceInfoD constructor
VrDeviceInfoD({
- Pointer<
VrDeviceInfoC> ? originalPointer, - int hResolution = 0,
- int vResolution = 0,
- double hScreenSize = 0,
- double vScreenSize = 0,
- double eyeToScreenDistance = 0,
- double lensSeparationDistance = 0,
- double interpupillaryDistance = 0,
- List<
double> ? lensDistortionValues, - List<
double> ? chromaAbCorrection,
Implementation
VrDeviceInfoD({
super.originalPointer,
this.hResolution = 0,
this.vResolution = 0,
this.hScreenSize = 0,
this.vScreenSize = 0,
this.eyeToScreenDistance = 0,
this.lensSeparationDistance = 0,
this.interpupillaryDistance = 0,
List<double>? lensDistortionValues,
List<double>? chromaAbCorrection,
}) {
this.lensDistortionValues = lensDistortionValues ?? .filled(paramCount, 0);
this.chromaAbCorrection = chromaAbCorrection ?? .filled(paramCount, 0);
}