"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
exports.whitePointD65 = whitePointD65;
/**
* Returns the standard white point; white on a sunny day.
*
* @return The white point
*/functionwhitePointD65() {
return [95.047, 100.0, 108.883];
}