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

计算几何-Dot-Vector

时间:2017-03-20 00:24:42      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:blog   bsp   turn   几何   cout   ret   nbsp   style   log   

看了书,然后码

 

 

 

 1 struct D{
 2   db x,y;
 3   D(db x=0.0,db y=0.0):x(x),y(y){}
 4 };
 5 typedef D V;
 6 bl op<(D A,D B){return A.x<B.x||(A.x==B.x&&A.y<B.y);}
 7 V op+(V A,V B){return V(A.x+B.x,A.y+B.y);}
 8 V op-(V A,V B){return V(A.x-B.x,A.y-B.y);}
 9 V op*(V A,db N){return V(A.x*N,A.y*N);}
10 V op/(V A,db N){return V(A.x/N,A.y/N);}

 

 

 

int main(){
   A[1]=V(1,2);
   cout<<A[1].x<<" "<<A[1].y<<endl;
   cout<<A[2].x<<" "<<A[2].y<<endl;
   A[2].y+=1.0,cout<<"add"<<endl;
   A[3]=A[1]+A[2];
   cout<<A[3].x<<" "<<A[3].y<<endl<<endl;
   sort(A+1,A+3+1);
   for(int i=1;i<=3;i++)cout<<A[i].x<<" "<<A[i].y<<endl;
   return 0;
}

 

1 2
0 0
add
1 3

0 1
1 2
1 3

计算几何-Dot-Vector

标签:blog   bsp   turn   几何   cout   ret   nbsp   style   log   

原文地址:http://www.cnblogs.com/JasonCow/p/6583012.html

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