Nothing
# For RGML2picture
setClass("PictureOp",
representation(x="numeric",
y="numeric",
rgb="character",
lty="numeric",
lwd="numeric",
lineend="numeric",
linejoin="numeric",
linemitre="numeric"),
prototype=list(rgb="black", lwd=1))
setClass("PictureStroke",
representation("PictureOp"))
setClass("PictureFill",
representation("PictureOp",
rule="character"),
prototype=list(rule="evenodd"))
setClass("PictureText",
representation("PictureOp",
string="character",
w="numeric",
h="numeric",
bbox="numeric",
angle="numeric",
letters="list"))
setClass("PictureChar",
representation("PictureOp",
char="character"))
setClass("PictureSummary",
representation(numPaths="numeric",
xscale="numeric",
yscale="numeric"))
setClass("Picture",
representation(paths="list",
summary="PictureSummary"))
setValidity("Picture",
function(object) {
all(sapply(object@paths, is, "PictureOp"))
})
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.