Nothing
transform_anis <- function(xcoord_val, ycoord_val, rotate, scale) {
rotate_clockwise <- matrix(c(cos(rotate), sin(rotate), -sin(rotate), cos(rotate)), nrow = 2, ncol = 2, byrow = TRUE)
scale_yaxis <- matrix(c(1, 0, 0, 1 / scale), nrow = 2, ncol = 2, byrow = TRUE)
coords <- rbind(xcoord_val, ycoord_val)
new_coords <- (scale_yaxis %*% rotate_clockwise) %*% coords
list(xcoord_val = new_coords[1, ], ycoord_val = new_coords[2, ])
}
transform_anis_inv <- function(xcoord_val, ycoord_val, rotate, scale) {
rotate_clockwise_inv <- matrix(c(cos(rotate), -sin(rotate), sin(rotate), cos(rotate)), nrow = 2, ncol = 2, byrow = TRUE)
scale_yaxis_inv <- matrix(c(1, 0, 0, scale), nrow = 2, ncol = 2, byrow = TRUE)
coords <- rbind(xcoord_val, ycoord_val)
new_coords <- (rotate_clockwise_inv %*% scale_yaxis_inv) %*% coords
list(xcoord_val = new_coords[1, ], ycoord_val = new_coords[2, ])
}
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.