return true;
}
if (!(o instanceof ReadOnlyLineSegment3)) {
return false;
}
final ReadOnlyLineSegment3 comp = (ReadOnlyLineSegment3) o;
return _origin.equals(comp.getOrigin()) && _direction.equals(comp.getDirection())
&& _extent == comp.getExtent();
}