degToRad
Convert degrees to radians
degToRad<return_type>(deg);
will return the converted radians from given degrees as the argument. The return_type specifies in which data type the result will be returned in, like shown in below example:
radToDeg<int>(180); //3
radToDeg<float>(35.1562); //0.613591 -> PI/5.12
radToDeg<bool>(0); //0
------------------------
radToDeg<char>(105); //'☺'
Last updated