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

AngleBetween() public static method

public static AngleBetween ( this p1, PointF p2 ) : float
p1 this
p2 System.Drawing.PointF
return float
        public static float AngleBetween(this PointF p1, PointF p2)
        {
            float dotproduct = p1.Dotproduct(p2);
            return dotproduct / p1.Length() / p2.Length();
        }