knitr::opts_chunk$set( collapse = TRUE, comment = "#>", fig.path = "man/figures/README-", out.width = "100%" )
A sample package created as a preliminary GSoC 2022 task. It calculates the Standard Delaunay Triangulation of 5 points
You can install the development version of trianglegsoc here:
devtools::install_github("ZeroDawn0D/trianglegsoc")
The function to calculate a Standard Delaunay Triangulation:
trianglegsoc::run_DT() trianglegsoc::run_DT(limit = 3) #stops execution after drawing 3 triangles
Input can also be provided beforehand
trianglegsoc::run_DT(input = matrix(c(1,2,3,9,0,5,6,9,4,3), ncol = 5, byrow = FALSE))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.