R/get_steps.R

Defines functions get_steps

Documented in get_steps

#' Return the legal melodic steps (independent of key) for first species
#'
#' @description {Return the legal melodic steps (independent of key) for first species}
#' @return vector
#' @export get_steps
get_steps <- function()
{
  return(c(0, 1, 2))
}
shill1729/synthesizer documentation built on July 9, 2020, 12:52 a.m.