Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

triangle-incenter

mattdesl14MIT1.0.2

computes the incenter of a triangle

triangle, 2d, 3d, tri, tris, incenter, center, centre, vector

readme

triangle-incenter

stable

Computes the incenter of a triangle. The vectors can be 2D, 3D, or n-dimensional.

var incenter = require('triangle-incenter')

var triangle2d = [ 
  [10, 0],
  [20, 2],
  [30, 1]
]

incenter(triangle2d)
// > [ 20.03678985362022, 1.2476878747362354 ]

Usage

NPM

incenter = triangleIncenter(triangle)

For the given triangle, an array of 3 vectors, computes the incenter.

Returns a new vector with the same dimension as the first point in triangle.

See Also

License

MIT, see LICENSE.md for details.