1 / 20

2.5. Basic Primitive Intersection

2.5. Basic Primitive Intersection. Details of common forms of primitive intersection test. Basic Primitive Intersection Tests. Basic primitive intersection testing concerns determining if two primitives intersect.

byron-mayo
Download Presentation

2.5. Basic Primitive Intersection

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. 2.5.Basic Primitive Intersection Details of common forms of primitive intersection test

  2. Basic Primitive Intersection Tests Basic primitive intersection testing concerns determining if two primitives intersect. Testing if two primitives intersect is often easier (and faster) than determining how two primitives intersect (e.g. generating contact information such as the distance of interpenetration, etc.).

  3. Types of basic primitive test Consult the recommended course text for details of the following tests: Separating-axis test Sphere against plane Box against plane Cone against plane Sphere against AABB Sphere against OBB Sphere against triangle Sphere against polygon AABB against polygon Triangle against triangle Two illustrative forms of closest point test are explored next.

  4. Separating Axes Overview of the separating axis theory

  5. Separating-axis test The separating-axis test provides a core tool for implementing a range of intersection tests. The test is based on the separating hyperplane theorem, which states that given two convex sets A and B, either the two sets are intersecting or there exists a separating hyperplane P such that A is on one side of P and B is on the other. The theory is intuitive as two convex objects cannot “curve” around each other. Thus, when they are not intersecting there will be a gap between them into which a plane can be inserted to separate the two objects.

  6. Separating-axis test A separating axis is a line which is perpendicular to some separating hyperplane. It is called a separating axis because the orthogonal projections of A and B onto the separating axis result in two non-overlapping intervals. In principle, a test for a separating axis or hyperplane is equally valid, however, in practice, it is less expensive to test for separation on an axis.

  7. Separating-axis test: Symmetrical primitives For symmetrical primitives with a defined centre point (e.g. AABBs, OBBs, spheres, etc.), the centre point will always project onto the middle of the projection interval along the tested axis. An efficient separation test of two symmetrical objects A and B is to compute the halfwidth, or radii, of their projection intervals and compare the sum of them against the distance between their centre projections. If the sum is less than the distance between the centre projections, the objects must be disjoint.

  8. Separating-axis test: Arbitrary primitives Given two arbitrary convex hulls (i.e. polyhedra) the following forms of intersection are possible: face-face, face-edge, and edge-edge. For face-face and face-edge cases, the face normals of both objects should be tested as potential separating axes. For edge-edge case, the cross product of the two edges should be tested as the potential separating axis (the points on the edges closest to each other form the feet of a perpendicular between the two edges). In summary, to determine intersection of two polyhedral objects, the following axes should be tested for separation: Aside: More fully: this list also includes face-vertex, edge-vertex and vertex-vertex, however, the vertex combinations can be considered a special case of edge contact. • Axes parallel to face normals of object A • Axes parallel to face normals of object B • Axes parallel to the vectors resulting from the cross products of all edges in A with all edges in B

  9. Separating-axis test: Arbitrary primitives As soon as a separating axis is found, a test can exit immediately, i.e. it is not until all identified axes have been tested with no separating axis that the objects must be intersecting. Aside: The separating-axis test can also be used to derive contact information, e.g. instead of exiting early when an overlap is detected, all axes are tested for overlap. After all axes have been tested, the axis with the least (normalized) overlap can be used as the contact normal, and the overlap can be used to estimate the penetration depth. With some extra work, contact points can also be computed with the help of the separating axis.

  10. Sample Plane Intersection Tests Sphere and box plane-intersection tests

  11. Sphere vs Plane Intersection It is possible to test a sphere against a plane in several ways, e.g. testing if the sphere intersects the plane, or if the sphere intersects the negative halfspace of the plane. boolTestSphereAndHalfspace( Sphere sphere, Plane plane) { float separation = Dot(sphere.Centre, plane.Normal) - plane.Distance; return separation <= sphere.Radius; }

  12. Box vs Plane Intersection Given that the box vertices represent the points furthest away from the centre of the box, they need only be compared for distance against the plane. By projecting each vertex along the plane’s normal and accumulating the result, the maximum projection radius is obtained. Comparing this to the distance of the OBB’s centre from the plane determines if it is in intersection. e1 (P-C)● uo u1 u0 C ● e0 Centre-plane distance Projected radius n ●

  13. Box vs Plane Intersection e1 (P-C)● uo u1 u0 boolIsOBBIntersectingPlane(OBB box, Plane plane) { float radius = box.e[0] * abs( dot( plane.n, box.u[0] ) ) + box.e[1] * abs( dot( plane.n, box.u[1] ) ) + box.e[2] * abs( dot( plane.n, box.u[2] ) ); float distance = dot( plane.n, box.c ) – plane.d; return abs(distance) <= radius; } C ● e0 Accumulate the projections of each box half-width along the plane normal to determine the total box radius along towards the plane. Centre-plane distance Projected radius n ● Determine distance of box’s centre from the plane Intersection if distance is within ±radius

  14. Ray Intersection Tests Intersection tests involving rays

  15. Intersecting lines rays and segments Consult the recommended course text for details of the following tests: Intersecting segment against plane Intersecting ray or segment against sphere Intersecting ray or segment against box Intersecting line against triangle Intersecting line against quadrilateral Intersecting ray or segment against triangle Intersecting ray or segment against convex polyhedron An illustrative form of ray test is explored next.

  16. Ray or Segment vs. Sphere Given a ray defined as R(t) = P + td, t ≥ 0, where P is the ray origin and d the normalized direction vector (for a defined segment 0 ≤ t ≤ tmax). For a sphere defined as (X-C)●(X-C)=r2, the point(s) of intersecti0n can be found by substituting R(t) for X and solving for values of t, i.e. Rearranging the above provides a quadratic expression in terms of t, i.e.: Solving for t will enable the points of intersection to be determined, i.e. t = -b±√(b2-c) where b=m●d and c=(m●m)-r2 Zero, one or two solutions will be found, negative solutions should be ignored! (P+td-C)●(P+td-C)=r2 t2 + 2(m●d)t+(m●m)-r2 = 0, where m=P-C

  17. Ray or Segment vs. Sphere boolIntersectRaySphere( Point p, Vector d, Sphere s, out float t, out Point q) { Vector m = p - s.c; float b = dot(m, d); float c = dot(m, m) - s.r * s.r; if (c > 0.0f && b > 0.0f) return false; float discr = b*b - c; if (discr < 0.0f) return false; t = -b - sqrt(discr); if (t < 0.0f) t = 0.0f; q = p + t * d; return true; } t d ● P Q ● r Determine b and c for use within t = -b±√(b2-c) C ● Return false if the ray origin is outside of the sphere (i.e. c>0) and pointing away from the sphere (b>0) If the discriminant is negative, i.e. No real solutions, then the ray misses sphere Determine the smallest (non-negative) value of t which gives the nearest point of intersection. If negative, then clamp to zero (ray started within sphere)

  18. Directed reading Directed Reading Directed reading on primitive intersection

  19. Directed reading Read Chapter 5 of Real Time Collision Detection: pp156-174 for primitive intersection tests pp175-200 for line, ray and segment intersection pp201-231 for dynamic and other forms of intersection test Related papers can be found from: http://realtimecollisiondetection.net/books/rtcd/references/ Directed reading

  20. Summary Today we explored: • Basic primitive intersection tests • Separating axis theory • Sampleplane and ray intersection tests To do: • Read the directed material • After reading the directed material, have a ponder if this is the type of material you would like to explore within a project.

More Related