Nothing
polycirc2<-function (radius=1, center = c(0, 0), edges = 50, init=pi/2, angle=pi/2)
{
circ = NULL
angles <- seq(init, init+angle, l = edges)
for (i in angles) {
circ <- rbind(circ, cbind(radius * sin(i), radius * cos(i)))
}
circ<-rbind(c(0,0),circ)
x<-cbind(circ[, 1] + center[1], circ[,2] + center[2])
x<-rbind(x,x[1,])
return(x)
}
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.