line - Line3 to compare with this one.
line
Returns true if both line's start and end points are equal.
bool equals(Line3 line) { return line.start.equals(start) && line.end.equals(end); }