Accord.Point.Round C# (CSharp) Method

Round() public method

Rounds the single precision point.
public Round ( ) : IntPoint
return IntPoint
        public IntPoint Round()
        {
            return new IntPoint((int)System.Math.Round(X), (int)System.Math.Round(Y));
        }