set method

Line3 set(
  1. Vector3 start,
  2. Vector3 end
)

Implementation

Line3 set(Vector3 start, Vector3 end) {
  this.start.copy(start);
  this.end.copy(end);

  return this;
}