Triangle.points constructor

Triangle.points(
  1. Vector3 point0,
  2. Vector3 point1,
  3. Vector3 point2
)

Create a triangle from three vertices, but don't set the normal

Implementation

Triangle.points(this.point0, this.point1, this.point2);