mirror of
https://github.com/rstudio/shiny.git
synced 2026-02-08 05:35:07 -05:00
34 lines
1.0 KiB
R
34 lines
1.0 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/render-cached-plot.R
|
|
\name{sizeGrowthRatio}
|
|
\alias{sizeGrowthRatio}
|
|
\title{Create a sizing function that grows at a given ratio}
|
|
\usage{
|
|
sizeGrowthRatio(width = 400, height = 400, growthRate = 1.2)
|
|
}
|
|
\arguments{
|
|
\item{width, height}{Base width and height.}
|
|
|
|
\item{growthRate}{Growth rate multiplier.}
|
|
}
|
|
\description{
|
|
Returns a function which takes a two-element vector representing an input
|
|
width and height, and returns a two-element vector of width and height. The
|
|
possible widths are the base width times the growthRate to any integer power.
|
|
For example, with a base width of 500 and growth rate of 1.25, the possible
|
|
widths include 320, 400, 500, 625, 782, and so on, both smaller and larger.
|
|
Sizes are rounded up to the next pixel. Heights are computed the same way as
|
|
widths.
|
|
}
|
|
\examples{
|
|
f <- sizeGrowthRatio(500, 500, 1.25)
|
|
f(c(400, 400))
|
|
f(c(500, 500))
|
|
f(c(530, 550))
|
|
f(c(625, 700))
|
|
|
|
}
|
|
\seealso{
|
|
This is to be used with \code{\link{renderCachedPlot}}.
|
|
}
|