Presentation is loading. Please wait.

Presentation is loading. Please wait.

2.5. B ASIC P RIMITIVE I NTERSECTION Details of common forms of primitive intersection test.

Similar presentations


Presentation on theme: "2.5. B ASIC P RIMITIVE I NTERSECTION Details of common forms of primitive intersection test."— Presentation transcript:

1 2.5. B ASIC P RIMITIVE I NTERSECTION Details of common forms of primitive intersection test

2 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 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 Overview of the separating axis theory

5 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 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 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 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: 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 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.

9 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 Sphere and box plane-intersection tests

11 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. bool TestSphereAndHalfspace( Sphere sphere, Plane plane) { float separation = Dot(sphere.Centre, plane.Normal) - plane.Distance; return separation <= sphere.Radius; }

12 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. C ● Projected radius e0e0 (P-C) ● u o u0u0 u1u1 ● n e1e1 Centre-plane distance

13 bool IsOBBIntersectingPlane(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; } Accumulate the projections of each box half-width along the plane normal to determine the total box radius along towards the plane. Determine distance of box’s centre from the plane Intersection if distance is within ±radius C ● Projected radius e0e0 (P-C) ● u o u0u0 u1u1 ● n e1e1 Centre-plane distance

14 Intersection tests involving rays

15 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 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 ≤ t max ). For a sphere defined as (X-C) ● (X-C)=r 2, 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±√(b 2 -c) where b=m ● d and c=(m ● m)-r 2 Zero, one or two solutions will be found, negative solutions should be ignored! (P+td-C)●(P+td-C)=r 2 t 2 + 2(m●d)t+(m●m)-r 2 = 0, where m=P-C

17 bool IntersectRaySphere( 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; } Determine b and c for use within t = -b±√(b2-c) Return false if the ray origin is outside of the sphere (i.e. c>0) and pointing away from the sphere (b>0) P ● r C ● d t ● Q 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 on primitive intersection Directed reading

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

20 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. Today we explored: Basic primitive intersection tests Separating axis theory Sample plane and ray intersection tests


Download ppt "2.5. B ASIC P RIMITIVE I NTERSECTION Details of common forms of primitive intersection test."

Similar presentations


Ads by Google