elementId2Prefix {rgl} | R Documentation |
The rglwidget
control is designed to work in the
htmlwidgets framework. Older rgl web pages that
used writeWebGL
or knitr used a different
method of linking the controls to the scene. This is a partial
bridge between the two systems.
elementId2Prefix(elementId, prefix = elementId)
elementId |
An element identifier from a |
prefix |
The prefix to use in the old-style control. |
Because of the order of initialization, this isn't a perfect bridge. The old-style control will not set the scene to the initial value from the control, but subsequent changes to the control should be passed to the widget.
This function generates Javascript code, so it should be
used in an results = "asis"
block in a knitr document.
Duncan Murdoch
## Not run: rglwidget(elementId = "thewidget") elementId2Prefix("thewidget", "theprefix") subsetSlider(subsets = as.list(1:5), prefixes = "theprefix", subscenes = 1) ## End(Not run)