1 / 26

Object Intersection

Object Intersection. Object Representation. Implicit forms F(x,y,z) = 0. testing. Explicit forms Analytic form x = F(y,z). generating. Parametric form (x,y,z) = P(t). Ray-Object Intersection. Implicit forms F(x,y,z) = 0. Ray: P(t) = (x,y,z) = source + t*direction = s + t*c.

Download Presentation

Object 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. Object Intersection CSE 681

  2. Object Representation • Implicit forms • F(x,y,z) = 0 testing • Explicit forms • Analytic form x = F(y,z) generating • Parametric form (x,y,z) = P(t) CSE 681

  3. Ray-Object Intersection • Implicit forms • F(x,y,z) = 0 Ray: P(t) = (x,y,z) = source + t*direction = s + t*c Solve for t: F(P(t)) = 0 CSE 681

  4. Ray-Sphere Intersection • Implicit form for sphere at origin of radius 1 • F(x,y,z) = x2 + y2 + z2 - 1 = 0 Ray: P(t) = (x,y,z) = s + t*c = (sx + t*cx, sy+t*cy, sz+t*cz) • Solve: • F(P(t)) = (sx + t*cx)2 + (sy+t*cy)2 + (sz+t*cz)2 - 1 = 0 • sx2+sy2+sz2 + t*2*(sxcx+sycy+szcz) + t2*(cx2+cy2+cz2) -1 = 0 • Use quadratic equation… CSE 681

  5. Ray-Sphere Intersection At2 + Bt + C = 0 A = |c|2 B = 2s·c C = |s|2 - 1 B2-4AC < 0 => no intersection = 0 => just grazes > 0 => two hits CSE 681

  6. Y = y2 Z = z2 X = x2 X = x1 Z = z1 Y = y1 Axis-Aligned Cuboid (rectangular solid, rectangular parallelpiped) Ray equation Planar equations P(t) = s + tc Solve for intersections with planes tx1 = (x1 - sx)/cx tx2 = (x2 - sx)/cx ty1 = (y1 - sx)/cx … CSE 681

  7. Rectangle For each intersection, note whether entering or leaving square side of plane Ray 2 Ray is inside after last entering and before first leaving Ray 1 CSE 681

  8. Ray-Plane for arbitrary plane V2 V1 ax + by + cz + d = 0 n ·P = -d V4 d -n V3 CSE 681

  9. Normal Vector Given ordered sequence of points defining a polygon how do you find a normal vector for the plane? Note: 2 normal vectors to a plane, colinear and one is the negation of the other Ordered: e.g., clockwise when viewed from the front of the face Right hand v. left hand space CSE 681

  10. Normal Vector V1 V2 n = (V1 - V2) x (V3 - V2) V3 V5 V2 V4 V1 V1 V3 V2 V3 V5 V4 V5 CSE 681 V4

  11. Normal Vector mx = S(yi - ynext(i)) (zi - znext(i)) V1 V2 my = S(zi - znext(i)) (xi - xnext(i)) V3 mz = S(xi - xnext(i)) (yi - ynext(i)) V5 V2 V4 V1 V1 V3 V2 V3 V5 V4 V5 CSE 681 V4

  12. Ray-Plane Ax + by + cz + d = 0 n ·P = -d P = s + t*dir n· (s+t*dir) = -d n·s + t*(n·dir) = -d t = -(d + n·s)/(n·dir) CSE 681

  13. Ray-Polyhedron Polyhedron - volume bounded by flat faces Each face is defined by a ring of edges Each edge is shared by 2 and only 2 faces The polyhedron can be convex or concave Faces can be convex or concave CSE 681

  14. Intersection going from outside to inside Convex Polyhedron volume bounded by finite number of infinite planes Computing intersections is similar to cube but using ray-plane intersection and arbitrary number of planes Intersection going from inside to outside CSE 681

  15. Intersection going from outside to inside Convex Polyhedron Intersection going from inside to outside Record maximum entering intersection - enterMax Record minimum leaving intersection - leaveMin If (enterMax < leaveMin) polyhedron is intersected CSE 681

  16. Concave Polyhedron Find first face (if any) intersected by ray Need ray-face (ray-polygon) intersection test CSE 681

  17. Ray-Polyhedron 1. Intersect ray with plane 2. Determine if intersection point is inside of 2D polygon A) Convex polygon B) Concave polygon CSE 681

  18. n·(VxE) > 0 VxE Ray-Convex Polygon E Test to see if point is on ‘inside’ side of each edge n V Dot product of normal Cross product of ordered edge vector from edge source to point of intersection CSE 681

  19. Ray-concave polygon Project plane and point of intersection to 2D plane 2D point-inside-a-polygon test Project to plane of 2 smallest coordinates of normal vector Form semi-infinite ray and count ray-edge intersections CSE 681

  20. 2D point inside a polygon test N N Y Y CSE 681

  21. 2D point inside a polygon test y If ( ( (y<y2) && (y>=y1) ) || ( (y<y1) && (y>=y2) ) ) CSE 681

  22. Object space World space Transformed objects Intersect ray with transformed object Use inverse of object transformation to transform ray Intersect transformed ray with untransformed object e.g., Ellipse is transformed sphere CSE 681

  23. worldPnt T= M*objPnt T worldN = (M -1) T *N T Transformed objects World space ray r(t) = s + t*c s = [sx,sy,sz,1] c = [cx, cy, cz, 0] Object space ray R(t) T = M-1sT + M -1 cT Transform intersection point and normal back to world space CSE 681

  24. Ray-Cylinder Q = s2 + t2*dir2 r P = s1 + t1*dir1 r Compute distance to intercept at r from cylinder axis CSE 681

  25. Ray-Cylinder CSE 681

  26. Ray-Ellipsoid Geometric construction: all points p such that |p-a| + |p-b| = r a b d2 d1 |P(t)-a| + | P(t)- b| = r CSE 681

More Related