码迷,mamicode.com
首页 > 其他好文 > 详细

平面上有序三元组点的方向判断

时间:2019-08-17 17:45:33      阅读:60      评论:0      收藏:0      [点我收藏+]

标签:nbsp   int   not   compute   name   clu   red   namespace   ane   

 1 //compute orientation of an ordered triplet of points in the plane
 2 /*
 3  * counterclockwise, clockwise, colinear
 4 */
 5 
 6 #include<bits/stdc++.h>
 7 
 8 using namespace std;
 9 
10 struct Point
11 {
12     int x,y;
13 };
14 
15 /*
16 use slope to calculate, note the orientation of (p,q,r) is converse to (r,q,p)
17 0--->colinear
18 1--->counterclockwise
19 2--->clockwise
20 */
21 
22 int calOrientation(Point p1,Point p2,Point p3)
23 {
24     int val=(p3.y-p2.y)*(p2.x-p1.x)-(p2.y-p1.y)*(p3.x-p2.x);
25     if(val==0)
26         return 0;
27     return val>0?1:2;
28 }

 

平面上有序三元组点的方向判断

标签:nbsp   int   not   compute   name   clu   red   namespace   ane   

原文地址:https://www.cnblogs.com/chuanwen-tech/p/11369285.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!