This package allows you to calculate the circumcenter of a triangle given 3 points.
const Point = require('circumcenter-calculator').Point;
const calculate = require('circumcenter-calculator').calculate;
const pointA = new Point(3,2);
const pointB = new Point(1,4);
const pointC = new Point(5,4);
const cirucmcenter = calculate(pointA, pointB, pointC);
console.log(cirucmcenter);
/**
* Point {
* x: 3,
* y: 4
* }
*/
I'm not a JS dev, so the code is probably shitty... if you like to review it please feel free to do so! This is more an excercise for me :) thanks!
Feel free to open PR, requesting feature via twitter, sending and email, or opening an issue.
MIT