R/S3methods.R

Defines functions CalcTextBounding Resolve

Documented in CalcTextBounding Resolve

#' Resolve name to object
#' 
#' @param x the target
#' @param ... extra options
Resolve <- function(x, ...) {
    UseMethod('Resolve')
}

#' Calculate Text Bounding
#'
#' Calculate bounding box including texts.
#'
#' W.R.T lower left corner of the view port in the unit of points
#' @param x object
#' @param ... extra options
CalcTextBounding <- function(x, ...) {
    UseMethod('CalcTextBounding', x)
}

Try the wheatmap package in your browser

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

wheatmap documentation built on March 18, 2022, 6:43 p.m.