Accord.Math.Geometry.Line.Equals C# (CSharp) Method

Equals() public method

Check if this instance of Line equals to the specified one.
public Equals ( object obj ) : bool
obj object Another line to check equalty to.
return bool
        public override bool Equals(object obj)
        {
            var line = obj as Line;
            if (line == null)
                return false;
            return this == line;
        }