UNPKG

amaran-light-cli

Version:

Command line tool for controlling Aputure Amaran lights via WebSocket to a local Amaran desktop app.

19 lines 580 B
/** * Simple approximations and curves for daylight simulation. */ /** * CIE daylight locus approximation. * @param x Progress through the day (0 to 1) */ export declare function cieDaylightCurve(x: number): number; /** * Simple sun altitude-based approximation. * @param x Progress through the day (0 to 1) */ export declare function sunAltitudeCurve(x: number): number; /** * Perez daylight model approximation. * @param x Progress through the day (0 to 1) */ export declare function perezDaylightCurve(x: number): number; //# sourceMappingURL=approximations.d.ts.map