breezy-desktop/gnome/src/math.js

3 lines
77 B
JavaScript

export function degreeToRadian(degree) {
return degree * Math.PI / 180;
}