Difference between revisions of "Collision detection"

From Wiki @ Karl Jones dot com
Jump to: navigation, search
(External links)
Line 23: Line 23:
  
 
* [https://en.wikipedia.org/wiki/Collision_detection Collision detection] @ Wikipedia
 
* [https://en.wikipedia.org/wiki/Collision_detection Collision detection] @ Wikipedia
 +
 +
[[Category:Computer science]]
 +
[[Category:Computation]]
 +
[[Category:Physics]]

Revision as of 11:00, 15 April 2016

Collision detection typically refers to the computational problem of detecting the intersection of two or more [[objects].

Description

While the topic is most often associated with its use in video games and other physical simulations, it also has applications in robotics.

In addition to determining whether two objects have collided, collision detection systems may also calculate time of impact (TOI), and report a contact manifold (the set of intersecting points).

Collision response deals with simulating what happens when a collision is detected (see Physics engine, Ragdoll physics).

Methodology

Solving collision detection problems requires extensive use of concepts from linear algebra and computational geometry.

See also

External links