Nothing
.rotate <- function(coords, degrees, pivot = c(0, 0)){
radians <- - degrees * pi / 180
rotated.mat <- matrix(c(cos(radians), -sin(radians), sin(radians), cos(radians)),
byrow = TRUE, ncol = 2)
t(pivot + rotated.mat %*% (t(as.matrix(coords) ) - pivot))
}
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.