Accord.Math.Geometry.LineSegment.GetHashCode C# (CSharp) Method

GetHashCode() public method

Get hash code for this instance.
public GetHashCode ( ) : int
return int
        public override int GetHashCode()
        {
            return start.GetHashCode() + end.GetHashCode();
        }