[C #] quickly finding the angle between three points

Source: Internet
Author: User

Public static double Angle (Point cen, Point first, Point second)
{
Const double m_pi= 3.1415926535897;

Double ma_x = first. X-cen. X;
Double ma_y = first. Y-cen. Y;
Double mb_x = second. X-cen. X;
Double mb_y = second. Y-cen. Y;
Double v1 = (ma_x * mb_x) + (ma_y * mb_y );
Double ma_val = Math. Sqrt (ma_x * ma_x + ma_y * ma_y );
Double mb_val = Math. Sqrt (mb_x * mb_x + mb_y * mb_y );
Double cosM = v1/(ma_val * mb_val );
Double angleAMB = Math. Acos (cosM) * 180/M_PI;

Return angleAMB;
}

Private void button#click (object sender, RoutedEventArgs e)
{
System. Windows. Point button2Point = new System. Windows. Point (0, 0 );
System. Windows. Point button3Point = new System. Windows. Point (0, 5 );
System. Windows. Point button4Point = new System. Windows. Point (2, 5 );
System. Windows. MessageBox. Show (string. Format ("{0}", Angle (button3Point, button2Point, button4Point )));
}

 

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.