CURELab.SignLanguage.HandDetector.PointHelper.ToPoints C# (CSharp) Method

ToPoints() public static method

public static ToPoints ( this p ) : System.Drawing.Point[]
p this
return System.Drawing.Point[]
        public static System.Drawing.Point[] ToPoints(this PointF[] p)
        {
            return p.Select(x => x.ToPoint()).ToArray();
        }