Clipping Apart from clipping to the view volume

  • Slides: 22
Download presentation
Clipping • Apart from clipping to the view volume, clipping is a basic operation

Clipping • Apart from clipping to the view volume, clipping is a basic operation in many other algorithms – Breaking space up into chunks – 2 D drawing and windowing – Modelling • May require more complex geometry than rectangular boxes

Hardware Sutherland-Hodgman • Suitable for hardware implementation – Only need the clip edge, the

Hardware Sutherland-Hodgman • Suitable for hardware implementation – Only need the clip edge, the endpoints of the current edge, and the last output point – Polygon edges are output as they are found, and passed right on to the next clip region edge Vertices in Clip Top Clip Right Clipped vertices out Clip Bottom Clip Left

Inside-Outside Testing • Edges/Planes store a vector pointing toward the outside of the clip

Inside-Outside Testing • Edges/Planes store a vector pointing toward the outside of the clip region • Dot products give inside/outside information Outside n Inside x f s-x i s

Inside/Outside in Screen Space • In screen space, clip planes are xs=± 1, ys=±

Inside/Outside in Screen Space • In screen space, clip planes are xs=± 1, ys=± 1, zs=0, zs=1 • Inside/Outside reduces to comparisons before perspective divide

Finding Intersection Pts Watt Sect 1. 4. 3, 1. 4. 4 • Use the

Finding Intersection Pts Watt Sect 1. 4. 3, 1. 4. 4 • Use the parametric form for the line between two points, x 1 and x 2: • For planes of the form x=a: • Similar forms for y=a, z=a • Solution for general plane in textbook

Additional Clipping Planes • Useful for doing things like cut-away views – Use a

Additional Clipping Planes • Useful for doing things like cut-away views – Use a clip plane to cut off part of the object – Only works if piece to be left behind is convex • Open. GL allows you to do it • Also one way to use Open. GL to identify objects in a region of space (uses the selection mechanism)

Clipping Lines • Lines can also be clipped by Sutherland-Hodgman – Slow, unless you

Clipping Lines • Lines can also be clipped by Sutherland-Hodgman – Slow, unless you already have hardware • Better algorithms exist – Cohen-Sutherland – Liang-Barsky – Nicholl-Lee-Nicholl

Cohen-Sutherland (1) • Works basically the same as Sutherland-Hodgman – Was developed earlier •

Cohen-Sutherland (1) • Works basically the same as Sutherland-Hodgman – Was developed earlier • Clip line against each edge of clip region in turn – If both endpoints outside, discard line and stop – If both endpoints in, continue to next edge (or finish) – If one in, one out, chop line at crossing pt and continue

3 1 Cohen-Sutherland (2) 2 3 4 4 3 3 4 4 1 2

3 1 Cohen-Sutherland (2) 2 3 4 4 3 3 4 4 1 2

Cohen-Sutherland (3) • Some cases lead to premature acceptance or rejection – If both

Cohen-Sutherland (3) • Some cases lead to premature acceptance or rejection – If both endpoints are inside all edges – If both endpoints are outside one edge

Cohen-Sutherland - Details • Only need to clip line against edges where one endpoint

Cohen-Sutherland - Details • Only need to clip line against edges where one endpoint is out • Use outcode to record endpoint in/out wrt each edge. One bit per edge, 1 if out, 0 if in. 1 2 • Trivial reject: 0010 – outcode(x 1)&outcode(x 2)!=0 • Trivial accept: 3 – outcode(x 1)|outcode(x 2)==0 • Which edges to clip against? – outcode(x 1)^outcode(x 2) 4 0101

Liang-Barsky Clipping • Parametric clipping - view line in parametric form and reason about

Liang-Barsky Clipping • Parametric clipping - view line in parametric form and reason about the parameter values • More efficient, as not computing the coordinate values at irrelevant vertices • Clipping conditions on parameter: Line is inside clip region for values of t such that:

Liang-Barsky (2) • Infinite line intersects clip region edges when: where

Liang-Barsky (2) • Infinite line intersects clip region edges when: where

Liang-Barsky (3) • When pk<0, as t increases line goes from outside to inside

Liang-Barsky (3) • When pk<0, as t increases line goes from outside to inside - enter • When pk>0, line goes from inside to outside - leave • When pk=0, line is parallel to an edge (clipping is easy) • If there is a segment of the line inside the clip region, sequence of infinite line intersections must go: enter, leave, leave

Liang-Barsky (4) Enter Leave Enter Leave

Liang-Barsky (4) Enter Leave Enter Leave

Liang-Barsky - Algorithm • Compute entering t values, which are qk/pk for each pk<0

Liang-Barsky - Algorithm • Compute entering t values, which are qk/pk for each pk<0 • Compute leaving t values, which are qk/pk for each pk>0 • Parameter value for small t end of line is: tsmall= max(0, entering t’s) • parameter value for large t end of line is: tlarge=min(1, leaving t’s) • if tsmall<tlarge, there is a line segment - compute endpoints by substituting t values • Improvement (and actual Liang-Barsky): – compute t’s for each edge in turn (some rejects occur earlier like this. )

Nicholl-Lee-Nicholl clipping • Some edges are irrelevant to clipping, particularly if one vertex lies

Nicholl-Lee-Nicholl clipping • Some edges are irrelevant to clipping, particularly if one vertex lies inside region. • Cases: – x 1 in corner region – x 1 in edge region • For each case, we generate specialized test regions for x 2, which use simple tests (slope, >, <), and tell which edges to clip against.

Nicholl-Lee-Nicholl (2) • Special cases for each endpoint location and slope • Number of

Nicholl-Lee-Nicholl (2) • Special cases for each endpoint location and slope • Number of cases explodes in 3 D, making it unsuitable 1 Reject 2 3 Top Left Top, Right 4 Left, bottom Top, Bottom

Weiler Atherton Polygon Clipping • For clockwise polygon: – for out-to-in pair, follow usual

Weiler Atherton Polygon Clipping • For clockwise polygon: – for out-to-in pair, follow usual rule – for in-to-out pair, follow clip edge • Easiest to start outside

General Clipping • Clipping general against general polygons is quite hard • Outline of

General Clipping • Clipping general against general polygons is quite hard • Outline of Weiler algorithm: – – Replace crossing points with vertices Double all edges and form linked lists of edges Change links at vertices Enumerate polygon patches • Can use clipping to break concave polygon into convex pieces; main issue is inside-outside for edges

Weiler Algorithm (1)

Weiler Algorithm (1)

Rearranging pointers makes it possible to enumerate all components of the intersection Changes to

Rearranging pointers makes it possible to enumerate all components of the intersection Changes to