Select the types of activity you want to include in your feed.
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