Learn R Programming

rayshader (version 0.37.3)

render_resize_window: Resize the rgl Window

Description

Resize the rgl Window

Usage

render_resize_window(width = NULL, height = NULL)

Value

None

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

Examples

Run this code
#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()
}

Run the code above in your browser using DataLab