The R Project SVN R

Rev

Rev 25278 | Rev 42333 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 25278 Rev 25323
Line 1... Line 1...
1
\name{grid.draw}
1
\name{grid.draw}
2
\alias{grid.draw}
2
\alias{grid.draw}
3
%- Also NEED an `\alias' for EACH other topic documented here.
-
 
4
\title{Draw a Grid Graphical Object}
3
\title{Draw a Grid Graphical Object}
5
\description{
4
\description{
6
  Produces graphical output from a graphical object.
5
  Produces graphical output from a graphical object.
7
}
6
}
8
\usage{
7
\usage{
9
grid.draw(x, recording=TRUE)
8
grid.draw(x, recording=TRUE)
10
}
9
}
11
%- maybe also `usage' for other objects documented here.
-
 
12
\arguments{
10
\arguments{
13
  \item{x}{An object of class \code{"grob"} or NULL.}
11
  \item{x}{An object of class \code{"grob"} or NULL.}
14
  \item{recording}{A logical value to indicate whether the drawing
12
  \item{recording}{A logical value to indicate whether the drawing
15
    operation should be recorded on the Grid display list.}
13
    operation should be recorded on the Grid display list.}
16
}
14
}
Line 29... Line 27...
29
  \code{\link{grid.grob}}.
27
  \code{\link{grid.grob}}.
30
}
28
}
31
 
29
 
32
\examples{
30
\examples{
33
grid.newpage()
31
grid.newpage()
34
# Create a graphical object, but don't draw it
32
## Create a graphical object, but don't draw it
35
l <- grid.lines(draw=FALSE)
33
l <- grid.lines(draw=FALSE)
36
# Draw it
34
## Draw it
37
grid.draw(l)
35
grid.draw(l)
38
}
36
}
39
\keyword{ dplot }%-- one or more ...
37
\keyword{dplot}