Presentation is loading. Please wait.

Presentation is loading. Please wait.

Drawing lines. Line algorithm 1: DDA Simple, but uses floating point values Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart delta_Y.

Similar presentations


Presentation on theme: "Drawing lines. Line algorithm 1: DDA Simple, but uses floating point values Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart delta_Y."— Presentation transcript:

1 Drawing lines

2 Line algorithm 1: DDA Simple, but uses floating point values Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart delta_Y = Ydifference / Xdifference loop x Xstart to Xend putpixel(x, y) y = y + delta_y end_of_loop x

3 Line algorithm 2 Keep the fraction part of y in a separate variable, Yerror Start one half up. Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart delta_Y = Ydifference / Xdifference Yerror = 0.5 loop x Xstart to Xend putpixel(x, y) Yerror = Yerror + delta_y if Yerror >= 1 then y = y + 1 Yerror = Yerror - 1 end_if end_of_loop x

4 Line algorithm 3, integer math Multiply Yerror with 2*Xdifference Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart Yerror = (0.5*2)*Xdifference loop x Xstart to Xend putpixel(x, y) Yerror = Yerror + 2*Ydifference if Yerror >= 2*Xdifference then y = y + 1 Yerror = Yerror - 2*Xdifference end_if end_of_loop x

5 Line algorithm 4 Subtract 2*Xdifference from Yerror Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart Yerror = -Xdifference loop x Xstart to Xend putpixel(x, y) Yerror = Yerror + 2*Ydifference if Yerror >= 0 then y = y + 1 Yerror = Yerror - 2*Xdifference end_if end_of_loop x

6 Line algorithm 5, Bresenham Brushing up things a little Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) Yerror = 2*Ydifference - Xdifference StepEast = 2*Ydifference StepNorthEast = 2*Ydifference - 2*Xdifference plot_pixel(x, y) loop x Xstart to Xend if Yerror <= 0 then Yerror = Yerror + StepEast else y = y + 1 Yerror = Yerror + StepNorthEast end_if putpixel(x, y) end_of_loop x

7 Using symmetry (x,y) (y,x) (-y,x) (-x,y) (-x,-y) (-y,-x)(y,-x) (x,-y)

8 Filling polygons

9 Draw one scan-line at a time = scan conversion

10 Scan converting convex polygons Sort the edges, so we know which ones are left / right. Calculate left and right edge for each scanline (y-value) and fill between the left and the right edge values.

11 Be careful to only fill pixels inside the polygon, we do not want double edges. Standard is to include the low valued edges (left edge and first scan line) in the polygon. (Does not solve all problems.) Sliver

12 How to calculate the edge values? Bresenham? Requires integer endpoints => polygon jumps a pixel at a time when moving. (Solve using fixed point mathematics.) Here we will use the simpler DDA algorithm instead.

13 A ”pixel-perfect” scan conversion algorithm Start by splitting your polygon with horizontal lines at each intermediate vertex and calculate the positions of any new vertices. Each part is now a special case of a figure limited by two arbitrary sloped (not horizontal) lines and two horizontal lines. Note that the horizontal edges may have length zero.

14 Linear interpolation p 1 =(X1,Y1) p 2 =(X2,Y2) p(  ) = (1-  )p 1 +  p 2 p 1 =(X1,Y1) y(x) = kx + m k = dy/dx= (Y2- Y1) / (X2- X1) m = Y1

15 Flat top and bottom (X1L,Y1) (X2L,Y2) (X2R,Y2) (X1R,Y1) height: H=Y2-Y1 slope left/right: SL=(X2L-X1L)/H SR=(X2R-X1R)/H

16 Scan converting polygons (X1L,Y1) xL=X1L xR=X1R y=ceil(Y1) ySkip=y-Y1 xL+=ySkip*SL xR+=ySkip*SR ySkip

17 Scan converting polygons (X1L,Y1) while y  floor(Y2) for x from ceil(xL) to floor(xR) putpixel(x,y); x+=1 end for y+=1 xL+=SL*1 xR+=SR*1 end while hline(xL,xR,y)

18 Interpolated scan conversion When I interpolate colour, I like to think of the colour value as just another dimension. So instead of drawing polygons in 2D, we draw them in 3D (or rather 5D) where the colour value is the z-dimension.

19 Bi-linear interpolation Linear interpolation in two directions. First we interpolate in the y-direction, then we interpolate in the x-direction. Unique solution for flat objects (triangles are always flat).

20 Interpolate the new variable over the polygon in just the same way as you did before using the colour slope: dc/dy. CSL=(C2L-C1L)/H CSR=(C2R-C1R)/H xL=X1L xR=X1R cL=C1L cR=C1R y=ceil(Y1) ySkip=y-Y1 xL+=ySkip*SL xR+=ySkip*SR cL+=ySkip*CSL cR+=ySkip*CSR ySkip (X1L,Y1,C1L)

21 We must interpolate horizontally also by adding dc/dx while y  floor(Y2) dcdx=(cR-cL)/(xR-xL) xSkip=ceil(xL)-xL c=cL+xSkip*dcdx for x from ceil(xL) to floor(xR) putpixel(x,y,c); x+=1 c+=dcdx end for y+=1 xL+=SL*1 xR+=SR*1 cL+=CSL*1 cR+=CSR*1 end while xSkip hline(xL,xR,cL,cR,y)


Download ppt "Drawing lines. Line algorithm 1: DDA Simple, but uses floating point values Xdifference = (Xend-Xstart) Ydifference = (Yend-Ystart) y = Ystart delta_Y."

Similar presentations


Ads by Google