R/display.R

Defines functions display

Documented in display

#' Show basic facts of a hyperellipsoid (center, shape, size)
#'
#' @param hellip A valid hyperellipsoid object
#' @return none

display <- function(hellip){
  message("center:")
  print(hellip$center)
  message("shape:")
  print(hellip$shape)
  message("size:")
  print(hellip$size)
}
meko222/SyScSelection documentation built on May 31, 2020, 12:33 a.m.