const RADIAN = Math.PI / 180;

export function toRadian(degree: number): number {
  return RADIAN * degree;
}
