rglwidget (version 0.1.1402)

shiny: Functions for integration of rglwidget into Shiny app.

Description

These functions allow an rgl scene to be embedded in a Shiny app.

Usage

rglwidgetOutput(outputId, width = "512px", height = "512px")
renderRglwidget(expr, env = parent.frame(), quoted = FALSE)

rglcontrollerOutput(outputId, width = "0px", height = "0px") renderRglcontroller(expr, env = parent.frame(), quoted = FALSE)

Arguments

outputId
The name for the control.
width, height
Width and height to display the control.
expr
An R expression returning a rglwidget (for renderRglwidget) or a rglcontroller (for renderRglcontroller) as output.
env
The environment in which to evaluate expr.
quoted
Is the expression already quoted?

Value

  • Used internally by Shiny.

Details

Use rglwidgetOutput or rglcontrollerOutput as an output object in a Shiny user interface section; use renderRglwidget or renderRglcontroller as the render function in the server section.