UNPKG

@valeera/mathx

Version:

A math library written in TS.

12 lines (11 loc) 441 B
export const DEG_TO_RAD = Math.PI / 180; export const DEG_360_RAD = Math.PI * 2; export const DEG_90_RAD = Math.PI * 0.5; export const DEG_60_RAD = Math.PI / 3; export const DEG_45_RAD = Math.PI * 0.25; export const DEG_30_RAD = Math.PI / 6; export const EPSILON = Math.pow(2, -52); export const RAD_TO_DEG = 180 / Math.PI; export const WEIGHT_GRAY_RED = 0.299; export const WEIGHT_GRAY_GREEN = 0.587; export const WEIGHT_GRAY_BLUE = 0.114;