inCentre method

Coordinate inCentre()

Computes the incentre of this triangle. The incentre of a triangle is the point which is equidistant from the sides of the triangle. It is also the point at which the bisectors of the triangle's angles meet. It is the centre of the triangle's incircle, which is the unique circle that is tangent to each of the triangle's three sides.

@return the point which is the inCentre of this triangle

Implementation

Coordinate inCentre() {
  return inCentreStatic(p0, p1, p2);
}