Embed presentation
Downloaded 657 times



















Clipping is a process that extracts portions of data or scenes inside a specified clipping region. It uses endpoint codes, which assign a 4-bit code to line endpoints to indicate if they are inside or outside the clipping window. One algorithm is the Cohen-Sutherland algorithm which uses these endpoint codes to test if lines are completely inside, completely outside, or intersect the clipping window. Another is the Mid-Point Subdivision algorithm which avoids directly calculating line-window intersections by performing a binary search via dividing lines at their midpoint.

















