Nothing
#' Transform mesh to 3D point cloud
#'
#' @param mesh A triangular mesh of class mesh3d.
#'
#' @return A data frame with XYZ coordinates.
#' @export
#'
#'
mesh_to_points <- function(mesh) {
out <- data.frame(t(mesh$vb)[,1:3])
colnames(out) <- c("x", "y", "z")
out
}
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.