R/unitconversion.degree.to.radian.R

Defines functions unitconversion.degree.to.radian

Documented in unitconversion.degree.to.radian

#' Unit Conversion - Angles - Degrees to Radians  
#' 
#' Performs a conversion of angle measures from degrees to radians. 
#'
#' @param x Vector - Values in units of degrees
#'
#' @return x, but converted to radians 
unitconversion.degree.to.radian <- function(
  x = 1
) {
  x * (2*constants.pi)/360
}
burrm/lolcat documentation built on Sept. 15, 2023, 11:35 a.m.