Skip to content

Triangle

Module Geometry.Triangles

In ixfx, a Triangle consists of three Points

type Triangle = {
a: Point;
b: Point;
c: Point;
}

Once you have that there are a bunch of functions to help you work with circles.

Comparison with other shapes

Creating/conversion

Barycentric coordinates

Kinds