grid.draw {grid} | R Documentation |
Produces graphical output from a graphical object.
grid.draw(x, recording=TRUE)
x |
An object of class "grob" or NULL. |
recording |
A logical value to indicate whether the drawing operation should be recorded on the Grid display list. |
This function doesn't do much itself beyond some system bookkeeping.
It calls the generic function draw.details
, dispatching on the
class of the list.struct
within the graphical object, and
the actual drawing occurs in the appropriate method.
None.
Paul Murrell
grid.newpage() # Create a graphical object, but don't draw it l <- grid.lines(draw=FALSE) # Draw it grid.draw(l)