Nothing
rotation <-
function (v, theta)
{
v.rot <- numeric(2)
v.rot[1] <- cos(theta) * v[1] + sin(theta) * v[2]
v.rot[2] <- -sin(theta) * v[1] + cos(theta) * v[2]
return(v.rot)
}
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.