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

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

Rounds the single precision point.
public Round ( ) : IntPoint
Результат IntPoint
        public IntPoint Round()
        {
            return new IntPoint((int)System.Math.Round(X), (int)System.Math.Round(Y));
        }