Nothing
vdc <- function(n, rand.rot = FALSE){
lines <- .C(C_vandercorput, as.integer(n), coord = double(3 * n))$coord
if (rand.rot){
##Gerenerate a random rotation
u <- runif(3, -.5, .5)
u <- u / sqrt(sum(u^2))
angle <- runif(1, 0, 2 * pi)
lines <- .C(C_rotation, lines = as.double(lines), as.integer(n),
as.double(u[1]), as.double(u[2]), as.double(u[3]),
as.double(angle))$lines
}
lines <- matrix(lines, ncol = 3)
return(lines)
}
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.