set method

Triangle set(
  1. Vector3 a,
  2. Vector3 b,
  3. Vector3 c
)

Implementation

Triangle set(Vector3 a, Vector3 b, Vector3 c) {
  this.a.copy(a);
  this.b.copy(b);
  this.c.copy(c);

  return this;
}