knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>",
  fig.path = "man/figures/README-",
  out.width = "100%"
)

trianglegsoc

A sample package created as a preliminary GSoC 2022 task. It calculates the Standard Delaunay Triangulation of 5 points

Installation

You can install the development version of trianglegsoc here:

devtools::install_github("ZeroDawn0D/trianglegsoc")

Examples

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))


ZeroDawn0D/trianglegsoc documentation built on April 1, 2022, 12:18 a.m.