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)
}
zwdzwd/wheatmap documentation built on March 17, 2022, 10:49 p.m.