copy method

Line3 copy(
  1. Line3 line
)

Implementation

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

  return this;
}