setFrom method

Line3 setFrom(
  1. Line3 line
)

Copies the passed line's start and end vectors to this line.

Implementation

Line3 setFrom(Line3 line) {
  start.setFrom(line.start);
  end.setFrom(line.end);

  return this;
}