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

add() public static method

public static add ( this p1, PointF p2 ) : PointF
p1 this
p2 System.Drawing.PointF
return System.Drawing.PointF
        public static PointF add(this PointF p1, PointF p2)
        {
            return new PointF(p1.X + p2.X, p1.Y + p2.Y);
        }