Nothing
test_that("basic poisson disk sampling works", {
pts <- poisson2d(w = 10, h = 10, r = 4)
expect_true(inherits(pts, 'data.frame'))
expect_identical(colnames(pts), c('x', 'y'))
pts <- poisson3d(w = 10, h = 10, d = 10, r = 5)
expect_true(inherits(pts, 'data.frame'))
expect_identical(colnames(pts), c('x', 'y', 'z'))
})
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.