RGL holds several lists of objects in each scene.
There are lists for shapes, lights, bounding box decorations, subscenes, etc.
clear3d
and rgl.clear
clear the specified stack, or restore
the defaults for the bounding box (not visible) or viewpoint.
With id = 0
rgl.pop
removes
the last added node on the list (except for subscenes: there it
removes the active subscene). The id
argument
may be used to specify arbitrary item(s) to remove; if id != 0
,
the type
argument is ignored.
rgl.clear
and clear3d
may also be used to clear material properties
back to their defaults.
clear3d
has an optional defaults
argument, which defaults to
r3dDefaults
. Only the materials
component of this argument
is currently used by clear3d
.
rgl.ids
returns a dataframe containing the IDs in the currently active subscene
by default, or a specified subscene, or if subscene = 0
, in the whole
rgl window, along with an indicator of their type.
Note that clearing the light stack leaves the scene in darkness; it should normally
be followed by a call to rgl.light
or light3d
.