UNPKG
chromatism2
Version:
latest (3.0.2)
3.0.2
3.0.1
A simple set of utility functions for colours.
github.com/tehshrike/chromatism
tehshrike/chromatism
chromatism2
/
src
/
helpers
/
to-radian.js
4 lines
(3 loc)
•
78 B
JavaScript
View Raw
1
2
3
4
export
default
function
toRadian
(
angle
) {
return
angle * (
Math
.
PI
/
180
) }