R/rgl.draw.R

Defines functions rgl.draw

Documented in rgl.draw

#' @title Continue drawing on screen
#'
#' @description Updates screen display after this was stopped using the function \code{\link{rgl.hold}}. This is identical to calling \code{par3d(skipRedraw=FALSE)}.
#'
#' @importFrom rgl par3d
#'
#' @return None
#'
#' @author Danail Obreschkow
#'
#' @seealso \code{\link{rgl.hold}}
#'
#' @export rgl.draw

rgl.draw = function() {
  rgl::par3d(skipRedraw=FALSE)
}

Try the rglplus package in your browser

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

rglplus documentation built on May 29, 2024, 7:24 a.m.