const rad = (deg: number) => deg * Math.PI / 180.0 const deg = (rad: number) => rad * 180.0 / Math.PI export { rad, deg }