青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品

牽著老婆滿街逛

嚴以律己,寬以待人. 三思而后行.
GMail/GTalk: yanglinbo#google.com;
MSN/Email: tx7do#yahoo.com.cn;
QQ: 3 0 3 3 9 6 9 2 0 .

C++ Program Code for 2D Elastic Collision of 2 Balls

from:http://www.plasmaphysics.org.uk/programs/coll2d_cpp.htm

//******************************************************************************
//   This program is a 'remote' 2D-collision detector for two balls on linear
//   trajectories and returns, if applicable, the location of the collision for 
//   both balls as well as the new velocity vectors (assuming a fully elastic
//   collision).
//   In  'f' (free) mode no positions but only the initial velocities
//   and an impact angle are required.
//   All variables apart from 'mode' and 'error' are of Double Precision
//   Floating Point type.
//
//   The Parameters are:
//
//    mode  (char) (if='f' alpha must be supplied; otherwise arbitrary)
//    alpha (impact angle) only required in mode='f'; 
//                     should be between -PI/2 and PI/2 (0 = head-on collision))
//    m1   (mass of ball 1)
//    m2   (mass of ball 2)
//    r1   (radius of ball 1)        not needed for 'f' mode
//    r2   (radius of ball 2)                "
//  & x1   (x-coordinate of ball 1)          "
//  & y1   (y-coordinate of ball 1)          "
//  & x2   (x-coordinate of ball 2)          "
//  & y2   (y-coordinate of ball 2)          "
//  & vx1  (velocity x-component of ball 1) 
//  & vy1  (velocity y-component of ball 1)         
//  & vx2  (velocity x-component of ball 2)         
//  & vy2  (velocity y-component of ball 2)
//  & error (int)  (0: no error
//                  1: balls do not collide
//                  2: initial positions impossible (balls overlap))
//
//   Note that the parameters with an ampersand (&) are passed by reference,
//   i.e. the corresponding arguments in the calling program will be updated;
//   however, the coordinates and velocities will only be updated if 'error'=0.
//
//   All variables should have the same data types in the calling program
//   and all should be initialized before calling the function even if
//   not required in the particular mode.
//
//   This program is free to use for everybody. However, you use it at your own
//   risk and I do not accept any liability resulting from incorrect behaviour.
//   I have tested the program for numerous cases and I could not see anything 
//   wrong with it but I can not guarantee that it is bug-free under any 
//   circumstances.
//
//   I would appreciate if you could report any problems to me
//   (for contact details see  http://www.plasmaphysics.org.uk/feedback.htm ).
//
//   Thomas Smid, January  2004
//                December 2005 (corrected faulty collision detection; 
//                               a few minor changes to improve speed;
//                               added simplified code without collision detection)
//*********************************************************************************

       
void collision2D(char mode,double alpha,
                 
double m1, double m2, double r1, double r2,
                 
double& x1, double& y1, double& x2, double& y2,
                 
double& vx1, double& vy1, double& vx2, double& vy2,
                 
int& error )     {

       
double  r12,m21,d,gammav,gammaxy,dgamma,dr,dc,sqs,t,
               dvx2,a,x21,y21,vx21,vy21,pi2;

//     ***initialize some variables ****
       pi2=2*acos(-1.0E0);
       error
=0;
       r12
=r1+r2;
       m21
=m2/m1;
       x21
=x2-x1;
       y21
=y2-y1;
       vx21
=vx2-vx1;
       vy21
=vy2-vy1;



//     ****  return old positions and velocities if relative velocity =0 ****
       if ( vx21==0 && vy21==0 ) {error=1return;}


//     *** calculate relative velocity angle             
       gammav=atan2(-vy21,-vx21);




//******** this block only if initial positions are given *********

       
if (mode != 'f'{

       
       d
=sqrt(x21*x21 +y21*y21);
       
//     **** return if distance between balls smaller than sum of radii ***
       if (d<r12) {error=2return;}

//     *** calculate relative position angle and normalized impact parameter ***
       gammaxy=atan2(y21,x21);
       dgamma
=gammaxy-gammav;
          
if (dgamma>pi2) {dgamma=dgamma-pi2;}
           
else if (dgamma<-pi2) {dgamma=dgamma+pi2;}
       dr
=d*sin(dgamma)/r12;
       
//     **** return old positions and velocities if balls do not collide ***
       if (  (fabs(dgamma)>pi2/4 && fabs(dgamma)<0.75*pi2) || fabs(dr)>1 )   
           
{error=1return;}


//     **** calculate impact angle if balls do collide ***
       alpha=asin(dr);

       
//     **** calculate time to collision ***
       dc=d*cos(dgamma);
       
if (dc>0{sqs=1.0;} else {sqs=-1.0;}
       t
=(dc-sqs*r12*sqrt(1-dr*dr))/sqrt(vx21*vx21+ vy21*vy21);
//    **** update positions ***
       x1=x1+vx1*t;
       y1
=y1+vy1*t;
       x2
=x2+vx2*t;
       y2
=y2+vy2*t;

       
   }


//******** END 'this block only if initial positions are given' *********
      
       
       
//     ***  update velocities ***

       a
=tan( gammav +alpha);

       dvx2
=-2*(vx21 +a*vy21) /((1+a*a)*(1+m21));
       
       vx2
=vx2+dvx2;
       vy2
=vy2+a*dvx2;
       vx1
=vx1-m21*dvx2;
       vy1
=vy1-a*m21*dvx2;


       
return;
}




//******************************************************************************
//  Simplified Version
//  The advantage of the 'remote' collision detection in the program above is 
//  that one does not have to continuously track the balls to detect a collision. 
//  The program needs only to be called once for any two balls unless their 
//  velocity changes. However, if somebody wants to use a separate collision 
//  detection routine for whatever reason, below is a simplified version of the 
//  code which just calculates the new velocities, assuming that the balls are 
//  already touching and approaching each other (these two conditions are 
//  important as otherwise the results will be incorrect)
//****************************************************************************


       
void collision2Ds(double m1, double m2,
                 
double x1, double y1, double x2, double y2,
                 
double& vx1, double& vy1, double& vx2, double& vy2)     {

       
double  m21,dvx2,a,x21,y21,vx21,vy21,fy21,sign;


       m21
=m2/m1;
       x21
=x2-x1;
       y21
=y2-y1;
       vx21
=vx2-vx1;
       vy21
=vy2-vy1;



//     *** I have inserted the following statements to avoid a zero divide; 
//         (for single precision calculations, 
//          1.0E-12 should be replaced by a larger value). **************  
  
       fy21
=1.0E-12*fabs(y21);                            
       
if ( fabs(x21)<fy21 ) {  
                   
if (x21<0{ sign=-1; } else { sign=1;}  
                   x21
=fy21*sign; 
        }
 

//     ***  update velocities ***
       a=y21/x21;
       dvx2
= -2*(vx21 +a*vy21)/((1+a*a)*(1+m21)) ;
       vx2
=vx2+dvx2;
       vy2
=vy2+a*dvx2;
       vx1
=vx1-m21*dvx2;
       vy1
=vy1-a*m21*dvx2;


       
return;
}

posted on 2007-12-25 16:12 楊粼波 閱讀(417) 評論(0)  編輯 收藏 引用


只有注冊用戶登錄后才能發表評論。
網站導航: 博客園   IT新聞   BlogJava   博問   Chat2DB   管理


青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            欧美日韩另类字幕中文| 欧美激情1区2区3区| 亚洲黄色影院| 欧美一级黄色网| 日韩午夜一区| 美女露胸一区二区三区| 久久久久九九九九| 欧美视频观看一区| 91久久国产自产拍夜夜嗨| 国语精品中文字幕| 亚洲嫩草精品久久| 亚洲一区二区三区中文字幕在线| 欧美88av| 亚洲激情午夜| 一区二区在线看| 久久久精品免费视频| 亚洲视频在线观看一区| 欧美国产乱视频| 猫咪成人在线观看| 国产一区二区久久久| 亚洲主播在线播放| 性久久久久久| 国产精品区免费视频| 一区二区三区日韩| 亚洲在线免费| 国产精品网站一区| 午夜视频一区二区| 久久九九精品99国产精品| 国产精品久久久久久妇女6080| 亚洲精品美女在线观看| 亚洲精品国产精品国自产观看浪潮 | 久久精品国产精品亚洲精品| 欧美亚洲成人网| 在线视频欧美日韩| 亚洲欧美电影在线观看| 国产精品羞羞答答| 欧美在线播放视频| 美女任你摸久久| 亚洲黄色av| 欧美精品电影| av72成人在线| 欧美伊人久久久久久久久影院| 国产精品一区二区在线观看| 香蕉久久夜色精品国产| 久久久999精品| 在线免费观看日本欧美| 美女诱惑黄网站一区| 亚洲免费av网站| 亚洲欧美日韩国产| 国内精品免费午夜毛片| 麻豆精品视频在线观看| 99亚洲伊人久久精品影院红桃| 亚洲欧美三级伦理| 在线精品国产成人综合| 欧美日韩国产色综合一二三四| 中日韩美女免费视频网址在线观看| 欧美在线观看一区二区| 亚洲国产免费看| 国产精品美女www爽爽爽视频| 久久激情五月婷婷| 亚洲精品在线观看免费| 久久精品综合一区| 99视频一区| 激情伊人五月天久久综合| 欧美精品免费播放| 欧美有码视频| 99热精品在线| 男人的天堂亚洲| 亚洲已满18点击进入久久| 在线欧美日韩国产| 国产精品视频网址| 欧美激情一区| 久久电影一区| 亚洲视屏一区| 亚洲国内在线| 久久亚洲一区二区| 亚洲性图久久| 亚洲人成网站在线观看播放| 国产日韩在线看片| 欧美日韩国产一区二区三区| 久久天堂成人| 性欧美videos另类喷潮| 日韩视频中文| 亚洲第一精品久久忘忧草社区| 欧美专区一区二区三区| 亚洲一区二区动漫| 亚洲激情一区二区三区| 国内精品久久久久影院 日本资源| 欧美色精品天天在线观看视频| 久久在线免费观看| 久久国产精品第一页| 亚洲男人影院| 亚洲主播在线| 亚洲午夜激情| 亚洲视频成人| 一区二区三区日韩精品| 亚洲美女中文字幕| 亚洲国产经典视频| 欧美成人免费全部| 免费在线观看精品| 久久天天躁夜夜躁狠狠躁2022| 欧美一级欧美一级在线播放| 亚洲综合久久久久| 久久精品视频免费播放| 亚洲高清不卡在线观看| 日韩视频一区二区三区在线播放免费观看 | 蜜臀av性久久久久蜜臀aⅴ| 欧美一区激情| 久久精品99国产精品日本| 午夜精品久久| 久久精品国产成人| 久久精精品视频| 久久蜜桃精品| 麻豆freexxxx性91精品| 美女日韩欧美| 欧美日韩国产成人在线| 国产精品jizz在线观看美国| 国产精品久久久久久久久婷婷| 欧美日韩在线看| 国产精品久久久久久av下载红粉| 国产精品成人v| 国产精品亚洲第一区在线暖暖韩国| 国产精品亚洲综合久久| 国产日产欧美一区| 在线播放中文一区| 亚洲久色影视| 亚洲一区三区电影在线观看| 欧美一区91| 免费视频久久| 日韩一本二本av| 先锋影音网一区二区| 久久久久久久久伊人| 欧美电影电视剧在线观看| 欧美日韩综合在线免费观看| 国产精品制服诱惑| 亚洲国产另类精品专区| 亚洲性线免费观看视频成熟| 欧美在线高清视频| 亚洲第一精品电影| 亚洲性图久久| 另类天堂av| 国产精品理论片在线观看| 黄色国产精品一区二区三区| 亚洲三级电影全部在线观看高清| 亚洲免费视频成人| 蜜臀av一级做a爰片久久| 亚洲免费福利视频| 欧美在线1区| 欧美日韩综合| 在线免费观看日本一区| 亚洲淫片在线视频| 欧美成人一品| 午夜精品久久99蜜桃的功能介绍| 米奇777超碰欧美日韩亚洲| 国产精品美女久久久久久免费 | 国产欧美日韩视频在线观看| 亚洲国产二区| 久久国产一区二区| 亚洲精品视频一区| 久久久久久夜| 国产精品黄视频| 亚洲日本中文字幕区| 久久久久久久性| 中国成人亚色综合网站| 免费看黄裸体一级大秀欧美| 国产麻豆精品久久一二三| 一区二区高清在线| 欧美电影免费观看大全| 性亚洲最疯狂xxxx高清| 欧美日韩免费高清一区色橹橹| 狠狠色丁香久久综合频道| 亚洲欧美日韩在线一区| 亚洲精品在线电影| 欧美电影免费观看网站| 樱花yy私人影院亚洲| 久久国产精品99国产精| 亚洲视频欧洲视频| 欧美精品一二三| 亚洲经典三级| 欧美成人免费播放| 久久免费视频在线| 韩国美女久久| 久久精品在线播放| 午夜视频久久久久久| 国产欧美日韩在线视频| 亚洲欧美福利一区二区| 一区二区日韩精品| 欧美日韩在线观看一区二区三区| 99国产精品99久久久久久粉嫩| 欧美成人一区在线| 你懂的一区二区| 亚洲欧洲日本国产| 欧美激情在线狂野欧美精品| 久久综合九色99| 亚洲国产精品va在线观看黑人| 美女露胸一区二区三区| 老鸭窝毛片一区二区三区| 亚洲风情亚aⅴ在线发布| 欧美国产精品一区| 欧美高清在线视频观看不卡|