area3D method

double area3D()

Computes the 3D area of this triangle. The value computed is always non-negative.

@return the 3D area of this triangle

Implementation

double area3D() {
  return area3DStatic(this.p0, this.p1, this.p2);
}