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

牽著老婆滿街逛

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

COLLISION DETECTION

來源:http://www.cs.brown.edu/courses/gs007/lect/sim/web/murat.html


COLLISION DETECTION

Importance

Why is collision detection slow?

Explosive Growth

Using the formula: Number of collision tests = (n² -n)/2

Objects                Collision Tests
2                          1
3                          3
4                          6
.                          .
.                          .
.                          .
20                          190

 

O(n²)

Eliminating Collision Tests

  • Redundant Tests

     

  • Game Rules

    • e.g. spaceship game where you don't want the aliens to shoot each
      other, so you don't care about collision detection between the alien
      misiles and alien ships.
  • Eleminations based on spatial positioning such as axis sorting and the sector method

    • Axis Sorting

      Sprite Number 		X-Coordinate		Sprite Width
              1			    10 			    10
              2			    15			    5
              3 			    18			    8
              4 			    40			    10
              5			    45			    10
              

       

    • Sector Method
  • Collision Testing
    • Bounding Based
    • Pixel Based
    To find more detailed information on these just click here.



    Two collision-detection algorithms that we are going to discuss




    I-COLLIDE- An incremental algorithm for collision detection between solid models.

    • I collide is based on temporal and geometric coherence

      • What is temporal and geometric coherence?

        • Property that the state of the application does not change significantly between successive time steps or simulation frames.

         

      • By exploiting coherence we are able to trim down the number of pairwise object and feature tests involved in each iteration.

         

      • For n objects,the worst case running time for any collision detection algorithm is O(n²) this is also true for I-collide.

         

      • However, running time of I-Collide for n objects is O(n+m) where m is the number of objects very close to each other.
    Two objects are very close if their axis aligned bounding boxes overlap.

    What are bounding boxes?

    • Fixed-Size Bounding Cubes:

      • We compute the size of the fixed cube to be large enough to contain the object at any orientation ?

         

      • The cube is defined by a center and radius.

         

      • Easy to recompute as the position changes.

         

      • Well suited for dynamic enviroments. Works well with objects which are nearly spherical.

         

      • At each time step the cube is recomputed as follows:
        • 1. Transform the center by using one vector matrix multiplication.

           

        • 2. Compute the min and max x , y, z coordinates by subtracting and adding the radius from the coordinates of the center.

           

        • step 1 is only one vector matrix multiplication

           

        • step 2 is just 3 additions and 3 subtructions
      e.g.



    • Dynamically Rectangular Bounding Boxes:

      • We compute the size of the rectangular bounding box to be the thightest axis aligned box contain the object at a particular orientation.
      • It is defined by its min and max x, y and z coordinates (up to 6 of its vertices).As an object moves, its minima and maxima is recalculated
      • For oblong objects rectangular objects fit better than cubes resulting in fever overlaps.
      • This is an advantage as long as only few objects ore moving.

        e.g.


    Sweep and Prune

    • Sorting the bounding boxes surrunding the objects is the key to the sweep and prune approach.

       

    • It is not intuitively obvious how to sort bounding boxes in 3 space.

       

    • One way is dimension reduction approach.
      • First thing we do is to project each 3-dimensional bounding box onto the x,y and z axes.

         

      • We are interested in overlaps. Because a pair of bounding boxes can overlap if and only if their intervals overlap in all three dimensions.

         

      • We construct 3 lists, one for each dimension.

         

      • Each list contains the value of the end-points of the intervals corresponding to that dimension.

         

      • By sorting these lists, we can determine which intervals overlap.

         

      • In general such a sort will take O(n log n) time However we can reduce this time if we keep the sorted lists from the previous frame, changing only the values of the interval endpoints.

         

      • Since there will be relatively small movements between frames the lists will be nearly sorted so we can sort in expected O(n) time using Insertion Sort.


    • Two- Dimensional Intersection Tests

      • Project each 3-dimesional axis-aligned bounding box onto any of the two of the x-y, y-z, x-z planes.

         

      • Each of these projections are rectangles in 2 space so there are fewer overlaps of these 2-D rectangles than the 1-D intervals used by the Sweep and Prune Technique.

         

      • In cases where projection on the one-dimension causes densly clustered intervals the two dimensiona technique is more efficient.



    • Other Alternatives:

      • Binary Space Partitioning (BSP trees), octrees, etc..

         

      • Several practical and efficient algorithms are based on uniform space division.
          Divide Space into Unit Cells: To check for collision, examine the cells occupied by each object. However choosing a near-optimal cell size is difficult and failing to do so results in large memory usage and computational inefficiency



    This page is created by Murat Gorguner

    IMPULSED BASED SIMULATION

    The two fundamental requirements you want in dynamic simulation:

    • physical accuracy
    • computational efficiency - can it run in real time
    Impulsed based simulation attempts to fulfill these two requirements

    Constraint based vs. impulsed based simulation

    dealing with contact

    In constraint based simulation:

    Example - ball rolling along a table top

    • -force which table exerts on ball is a constraint force that doesn't do work on the ball but exerts a non-penetration constaint

       

    • -force isn't modeled explicit but accounted for by a constraint on the ball - one of the ball`s coordinates is held constant

       

    • -problem - constaints may change over time, e.g. ball rolls off the table, hits an object on the table
      • -keeping track of the changing constraints in order to calculate the correct motion of the ball can get complicated

       

    • -also, impacts create impulses, not constraint forces and must be handled separately

       

    In impulsed based simulation

    Example - ball resting on table top

    • -no constraints are placed on moving objects

      =7F

    • -unification of all types of contact under a single model
      • -model used for collisions can be used for instances where an object is rolling or resting on another object
      • -not necessary to classify different contact types or deal with them in different ways

       

    • -in the example, ball is experiencing many tiny collisions with the table - microcollisions

      Does impulsed based simulation result in physically accurate simulations?

    • Yes, microcollision contact produces correct behavior

      Is it fast enough for simulation purposes?

    • Yes, the large number of collisions which must be calculated does not prohibit real-time simulation

    Procedure for implementing impulsed based simulation

    First, you assume objects travel in ballistic trajectories when not colliding with anything

    For each object, a bounding box is created to enclose the path of an object over a time interval, this is done at the beginning of each frame -a good interval is the frame rate =3D 1/30 seconds

    Intersections between the boxes are found, calculated to take O(n(1 + log R)) time where R is ratio of largest to smallest box size

    If two boxes don't intersect, objects won't collide in the next frame so no distance or time of impact calcuations have to be done

    If they do, the Lin-Canny closest features algorithm is used - same one as in I_COLLIDE -the shortest possible time to collision is calclulated

    Each pair is inserted in a heap sorted by time of collision, e.g. pair that= =20 will collide first will be at the top

    Time step is inceremented until the time of collision of the top pair

    L in-Canny algorithm is done again to find distance between the two objects - collision when distance falls below an epsilon which is at least 3 orders of magnitude smaller than the dimensions of the objects

    • if collision, do collision resolution, calculate new bounding volumes= =20 for the objects, intersect =09 these new boxes with the others and update the heap accordingly

    Drawbacks to this detection system:

    Since ballistic trajectory is assumed you can't have any forces all of a=20 sudden affect an =09 object's trajectory - no user interface possible after the initial forces

    This is OK for a pool game but not for most other games

    Solution:=7F Calculate bounding box that will encompass the maximum displacement an=20 object =09 can go over the time interval

    Consequences: More collision detection needed since boxes may be bigger and a it's=20 possible most =09 of the intersecting volumes will produce no collisions when thought was=20 expected =09 since the position of the object in the box varies on the forces enacted

    But User Interaction can happen!

    Computing collision impulses

    When two bodies collide, an impulse must be applied to a body so there is no= =20 interpenetration; the impulse applied to the other body is the negative of the impulse

    Once impulse is knowm, you can compute the linear velocity for center of=20 mass and angular velocity and algorith can continune

    You don't want to assume frictionless collisions or perfectly elastic=20 collisions, we want to model the real world, unless you're in space

    3 assumptions for collisions:

    1) Infinitesimal collision time

    - The duration of a collision is= =20 negligible compared to the time over which simulated objects move.

    Therefore

    a)the configurations of two objects may be taken as constant over the= =20 entire collision - even in simulations, it's just overkill to calculate the deformity and=20 rebounding of an object during a collision

    b)the effect of one object on another can be described as an impulse which= =20 gives rise to instantaneous change in linear and angular velocities of an object

    2) Poisson's hypothesis

    P_total =3D (1 + e) * P_max_compression

    e =3D constant between 0 and 1, dependent on object's material, called= =20 coefficient of restitution

    P_total =3D magnitude of normal component of the impulse done by one=20 object onto the other overthe entire collision

    =09 P_max =3D magnitude of normal component of the impulse done by one object= onto the other up to the point of maximum compression

    if e =3D 1, collision is totally elastic

    if e =3D 0, collision is totally plastic, objects stick together afer= collision

    P_max_compression is easy to characterize, it's the point at which the= normal component of the relative contact velocity vanishes.

    3)Coulomb friction

    u =3D contact velocity of object 1 realtive to object 2

    u_t =3D tangential component of u

    u_^t =3D unit vector in direction of u_t

    f_n =3D normal component of force exerted by object 2 on object= 1

    f_t =3D tangentialcomponent of force exerted by object 2 on= object 1

    m =3D coefficient of friction

    if u_t !=3D 0 ----> f_t =3D -m * abs(f_n) * u_^t

    if u_t =3D 0c ----> abs(f_t) <=3D m * abs(f_n)

  • posted on 2008-01-15 15:30 楊粼波 閱讀(453) 評論(0)  編輯 收藏 引用

    青青草原综合久久大伊人导航_色综合久久天天综合_日日噜噜夜夜狠狠久久丁香五月_热久久这里只有精品
  • <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>
            亚洲免费视频在线观看| 欧美成人一二三| 欧美主播一区二区三区| 亚洲黄色片网站| 尤物yw午夜国产精品视频| 国产精品高清在线观看| 欧美精品一区二区精品网| 亚洲欧美日韩另类| 先锋影音网一区二区| 亚洲一区二区三| 亚洲欧美色婷婷| 亚洲欧美日韩电影| 午夜精品999| 欧美一区二区三区视频免费| 亚洲欧美韩国| 亚洲欧美在线免费观看| 欧美一区二区三区精品电影| 午夜激情一区| 久久精选视频| 久久综合九九| 欧美日韩精品二区第二页| 欧美日韩在线精品| 欧美大尺度在线| 欧美日韩精品免费| 国产农村妇女精品一二区| 欧美成人日韩| 欧美日韩国产在线播放| 性色av一区二区三区红粉影视| 亚洲国产日韩欧美一区二区三区| 国产私拍一区| 国产主播精品| 亚洲国产视频a| 这里只有精品视频在线| 午夜精品福利电影| 欧美 日韩 国产精品免费观看| 牛人盗摄一区二区三区视频| 亚洲大片av| 99这里只有久久精品视频| 一本色道久久综合亚洲精品按摩 | 亚洲男同1069视频| 久久av免费一区| 欧美刺激午夜性久久久久久久| 欧美精品入口| 好看的亚洲午夜视频在线| 日韩视频专区| 亚洲一区二区三区影院| 久久久久久综合| 91久久中文| 欧美亚洲视频在线看网址| 另类av导航| 国产视频一区二区三区在线观看| 亚洲国产中文字幕在线观看| 亚洲一区二区三区免费在线观看 | 欧美a级大片| 一本大道久久精品懂色aⅴ | 免费看的黄色欧美网站| 亚洲伦理精品| 久久综合九色综合久99| 国产精品老牛| 亚洲精品看片| 欧美3dxxxxhd| 久久精品免费| 国产日韩欧美综合精品| 一本久久青青| 欧美波霸影院| 久久青青草综合| 国产在线拍偷自揄拍精品| 99国产精品久久久久老师| 久久躁日日躁aaaaxxxx| 亚洲综合欧美日韩| 国产精品v一区二区三区 | 激情综合色丁香一区二区| 亚洲午夜久久久久久尤物 | 久久精品亚洲精品| 国产伦精品一区二区三区照片91| 亚洲日本欧美天堂| 麻豆成人av| 久久精品国产99| 国户精品久久久久久久久久久不卡| 亚洲一区二区三区四区五区黄| 亚洲国产一二三| 欧美成人69| 亚洲青色在线| 亚洲第一毛片| 欧美剧在线免费观看网站| 亚洲国产经典视频| 欧美国产日本韩| 欧美成人午夜剧场免费观看| 国产精品成人观看视频免费| 亚洲娇小video精品| 欧美一区观看| 99视频热这里只有精品免费| 免费久久99精品国产| 亚洲第一二三四五区| 蜜臀久久久99精品久久久久久| 亚洲欧美日韩在线一区| 国产亚洲aⅴaaaaaa毛片| 久久亚洲视频| 午夜精品久久久久久久久| 欧美日韩一区不卡| 香蕉免费一区二区三区在线观看| av不卡在线| 欧美视频不卡中文| 一区二区日韩| 亚洲视频电影图片偷拍一区| 国产农村妇女毛片精品久久麻豆| 亚洲在线观看免费视频| 亚洲永久免费观看| 激情欧美一区二区| 久久久久9999亚洲精品| 欧美在线免费看| 国产在线精品自拍| 美女91精品| 美国十次成人| 中文网丁香综合网| 亚洲视频你懂的| 国产精品视频导航| 欧美一区二区三区播放老司机| 久久久久www| 亚洲欧洲一区| 亚洲一区二区久久| 1024欧美极品| 亚洲视频在线观看视频| 在线精品亚洲| 午夜综合激情| 99视频在线精品国自产拍免费观看| 亚洲免费人成在线视频观看| 亚洲国产另类久久精品| 亚洲综合国产激情另类一区| 亚洲人成欧美中文字幕| 香蕉国产精品偷在线观看不卡| 亚洲啪啪91| 欧美在线免费播放| 午夜精品久久久久久久久| 麻豆精品视频在线观看| 亚洲国产精品黑人久久久| 亚洲一区二区毛片| 欧美在线观看日本一区| 一本色道久久综合亚洲精品婷婷| 久久激情五月婷婷| 欧美夜福利tv在线| 国产精品xxxxx| 欧美中文字幕不卡| 欧美色图首页| 亚洲欧洲日韩在线| 国产日韩精品久久久| 一本色道久久99精品综合| 亚洲精品久久| 久久精品国产一区二区三区免费看 | 欧美.www| 亚洲电影免费| 久久不见久久见免费视频1| 午夜精品久久久久久99热软件| 欧美激情精品久久久久久免费印度| 久久久久国产精品人| 国产一区二区三区在线免费观看| 亚洲自拍偷拍色片视频| 午夜免费日韩视频| 欧美激情性爽国产精品17p| 久久亚洲精品中文字幕冲田杏梨 | 在线电影欧美日韩一区二区私密| 欧美一区在线看| 久久九九免费视频| 狠狠综合久久| 久久伊人亚洲| 亚洲国产日韩综合一区| 亚洲日本va午夜在线电影 | 亚洲欧美日韩精品久久久久| 一区二区三区色| 欧美日韩一区二区免费在线观看 | 亚欧成人在线| 久久一本综合频道| 亚洲福利免费| 欧美理论电影在线播放| 欧美va亚洲va日韩∨a综合色| 亚洲二区在线视频| 欧美日韩天堂| 午夜精品久久久久久久久| 久久久久国产一区二区| 亚洲国产免费看| 欧美视频在线一区二区三区| 亚洲一区二区在线免费观看视频| 久久精品一二三区| 亚洲国产成人在线视频| 欧美日韩免费在线观看| 欧美一级免费视频| 欧美二区在线观看| 亚洲午夜影视影院在线观看| 国产伦精品一区二区三区四区免费| 性欧美超级视频| 亚洲国产高清一区| 香蕉视频成人在线观看 | 亚洲国产另类久久久精品极度| 日韩午夜在线| 一区二区三区精品国产| 国产视频欧美视频| 欧美调教vk| 欧美精品久久久久久久免费观看| 久久精品视频在线播放| 在线一区欧美|