Bluesky app fork with some witchin' additions 馃挮
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

at theme-changes 11 lines 234 B view raw
1class MathUtils { 2 static lerp(start: number, stop: number, amount: number) { 3 return start + (stop - start) * amount 4 } 5 6 static toRadians(degrees: number) { 7 return degrees * (Math.PI / 180) 8 } 9} 10 11export default MathUtils