set method

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

Implementation

Line set(Vector3 start, Vector3 end) {
  this.start.setFrom(start);
  this.end.setFrom(end);
  return this;
}