Illuminance constructor
Illuminance({
- dynamic lux,
- double uncert = 0.0,
Constructs an Illuminance with lux
.
Optionally specify a relative standard uncertainty.
Implementation
Illuminance({dynamic lux, double uncert = 0.0})
: super(lux ?? 0.0, Illuminance.lux, uncert);