From 485d6a8e3d7a16a128ec945ecb401d419e741f81 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 26 Nov 2022 00:01:25 -0500 Subject: Improve note page view --- html/notes/rasterizing-triangles.html | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'html/notes/rasterizing-triangles.html') diff --git a/html/notes/rasterizing-triangles.html b/html/notes/rasterizing-triangles.html index 8bad785..c9f2a87 100644 --- a/html/notes/rasterizing-triangles.html +++ b/html/notes/rasterizing-triangles.html @@ -1,6 +1,6 @@ - + @@ -39,7 +39,8 @@
-
+
+

Lately I’ve been trying to implement a software renderer following the algorithm described by Juan Pineda in “A Parallel Algorithm for Polygon Rasterization”. For those unfamiliar with the paper, it describes an algorithm to rasterize triangles that has an extremely nice quality, that you simply need to preform a few additions per pixel to see if the next pixel is inside the triangle. It achieves this quality by defining an edge function that has the following property:

E(x+1,y) = E(x,y) + dY
 E(x,y+1) = E(x,y) - dX
@@ -121,6 +122,7 @@ func draw_triangle(x0, y0, x1, y1, x2, y2, v0, v1, v2): starting_e2 = e2 starting_v = v

Now this pseudo code is not the most efficient as it will iterate over the entire screen to draw one triangle, but it provides a starting basis to show how to use these Pineda properties to calculate per vertex values. One thing to note if you do implement this is, if you use fixed point arithmetic, be careful to insure you have enough precision to calculate all of these values with overflow or underflow. This was an issue I ran into running out of precision when I did the divide by the area.

+
-- cgit v1.2.3