render_resize_window {rayshader} | R Documentation |
Resize the rgl Window
Description
Resize the rgl Window
Usage
render_resize_window(width = NULL, height = NULL)
Arguments
width |
Default 'NULL', no change to the current value. New window width. |
height |
Default 'NULL', no change to the current value. New window height |
Value
None
Examples
#Resize the rgl window to various sizes
if(run_documentation()) {
montereybay %>%
sphere_shade() %>%
plot_3d(montereybay,zscale=50,zoom=0.6,theta=-90,phi=30)
render_resize_window(width = 800, height = 800)
render_snapshot()
}
if(run_documentation()) {
render_resize_window(width = 200, height = 200)
render_snapshot()
}
if(run_documentation()) {
render_resize_window(width = 800, height = 400)
render_snapshot()
}
[Package rayshader version 0.37.3 Index]