amaran-light-cli
Version:
Command line tool for controlling Aputure Amaran lights via WebSocket to a local Amaran desktop app.
15 lines • 472 B
TypeScript
/**
* Mathematical curve functions for Daylight Simulation
*/
/**
* Hann window function
* @param x Progress through the day (0 to 1)
*/
export declare function hannCurve(x: number): number;
/**
* Curve with a wider plateau in the middle
* @param x Progress through the day (0 to 1)
* @param width Width of the plateau
*/
export declare function widerMiddleCurve(x: number, width?: 'small' | 'medium' | 'large'): number;
//# sourceMappingURL=mathematical.d.ts.map