R/cell.R

Defines functions cell

#' cell
#' to be documented
#' @usage cell(q, xylim, ...)
#' @param q to be documented
#' @param xylim to be documented
#' @param ... to be documented
#' @noRd
#' @return to be documented
cell<-function(q, xylim, ...) {
  if (is(q,"quadtree")) f <- cell.quadtree else f <- cell.quadtree.leaf
  f(q, xylim, ...)
}

Try the mgwrsar package in your browser

Any scripts or data that you put into this service are public.

mgwrsar documentation built on April 17, 2023, 9:09 a.m.