2.5. basic primitive intersection

20
2.5. BASIC PRIMITIVE INTERSECTION Details of common forms of primitive intersection test

Upload: alexa

Post on 23-Feb-2016

45 views

Category:

Documents


0 download

DESCRIPTION

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. - PowerPoint PPT Presentation

TRANSCRIPT

Page 1: 2.5. Basic Primitive Intersection

2.5. BASIC PRIMITIVE INTERSECTIONDetails of common forms of primitive intersection test

Page 2: 2.5. Basic Primitive Intersection

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.).

Page 3: 2.5. Basic Primitive Intersection

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.

Page 4: 2.5. Basic Primitive Intersection

SEPARATING AXESOverview of the separating axis theory

Page 5: 2.5. Basic Primitive Intersection

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.

Page 6: 2.5. Basic Primitive Intersection

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.

Page 7: 2.5. Basic Primitive Intersection

Separating-axis test: Symmetrical primitivesFor 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.

Page 8: 2.5. Basic Primitive Intersection

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:

• 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.

Page 9: 2.5. Basic Primitive Intersection

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.

Page 10: 2.5. Basic Primitive Intersection

SAMPLE PLANE INTERSECTION TESTSSphere and box plane-intersection tests

Page 11: 2.5. Basic Primitive Intersection

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.

bool TestSphereAndHalfspace( Sphere sphere, Plane plane){ float separation = Dot(sphere.Centre, plane.Normal) - plane.Distance; return separation <= sphere.Radius;}

Page 12: 2.5. Basic Primitive Intersection

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.

C●

Projected radius

e0

(P-C)● uo

u0u1

n

e1

Centre-plane distance

Page 13: 2.5. Basic Primitive Intersection

Box vs Plane Intersection

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

e0

(P-C)● uo

u0u1

n

e1

Centre-plane distance

Page 14: 2.5. Basic Primitive Intersection

RAY INTERSECTION TESTSIntersection tests involving rays

Page 15: 2.5. Basic Primitive Intersection

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.

Page 16: 2.5. Basic Primitive Intersection

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!

Ray or Segment vs. Sphere

(P+td-C)●(P+td-C)=r2

t2 + 2(m●d)t+(m●m)-r2 = 0, where m=P-C

Page 17: 2.5. Basic Primitive Intersection

Ray or Segment vs. Spherebool 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●

rC ●

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)

Page 18: 2.5. Basic Primitive Intersection

DIRECTED READINGDirected reading on primitive intersection

Directed

reading

Page 19: 2.5. Basic Primitive Intersection

Directed reading Directed

reading

• Read Chapter 5 of Real Time Collision Detection:o pp156-174 for primitive

intersection testso pp175-200 for line, ray and

segment intersectiono pp201-231 for dynamic

and other forms of intersection test

• Related papers can be found from:

http://realtimecollisiondetection.net/books/rtcd/references/

Page 20: 2.5. Basic Primitive Intersection

Summary

To do:Read the directed

materialAfter 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