Accord.Point.Equals C# (CSharp) Метод

Equals() публичный Метод

Check if this instance of Point equal to the specified one.
public Equals ( object obj ) : bool
obj object Another point to check equalty to.
Результат bool
        public override bool Equals(object obj)
        {
            return (obj is Point) ? (this == (Point)obj) : false;
        }