clone method

Line3 clone()

Returns a new Line3 with the same start and end vectors as this one.

Implementation

Line3 clone() {
  return Line3().setFrom(this);
}