Nothing
library(shiny)
library(rgl)
open3d(useNULL = TRUE)
ids <- plot3d(rnorm(100), rnorm(100), rnorm(100))["data"]
scene <- scene3d()
close3d()
ui <- fluidPage(
checkboxInput("chk", label = "Display", value = FALSE),
playwidgetOutput("control"),
rglwidgetOutput("wdg")
)
server <- function(input, output, session) {
options(rgl.useNULL = TRUE)
save <- options(rgl.inShiny = TRUE)
on.exit(options(save))
output$wdg <- renderRglwidget({
rglwidget(scene, controllers = "control")
})
output$control <- renderPlaywidget({
toggleWidget("wdg", respondTo = "chk",
ids = ids)
})
}
if (interactive())
shinyApp(ui = ui, server = server)
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.