react-native-fiesta
Version:
A set of celebration animations powered by Skia. Engage more with your users by celebrating in your React Native application.
12 lines (9 loc) • 317 B
text/typescript
export function degreesToRadians(degrees: number) {
var pi = Math.PI;
return degrees * (pi / 180);
}
export function randomIntFromInterval(min: number, max: number): number {
// min and max included
return Math.floor(Math.random() * (max - min + 1) + min);
}
export const DEFAULT_ANIMATION_DURATION = 6000;