Accord.DoublePoint.Round C# (CSharp) 메소드

Round() 공개 메소드

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