longestSideLength method

double longestSideLength()

Computes the length of the longest side of this triangle

@return the length of the longest side of this triangle

Implementation

double longestSideLength() {
  return longestSideLengthStatic(this.p0, this.p1, this.p2);
}