From 4e2a79ed3db2067c6ef3631ca21e3c7d27b9fc55 Mon Sep 17 00:00:00 2001 From: Lucas Fryzek Date: Sat, 1 Mar 2025 09:52:00 +0000 Subject: Fix image link in rasterizing triangles --- notes/rasterizing-triangles.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'notes') diff --git a/notes/rasterizing-triangles.md b/notes/rasterizing-triangles.md index 73acb33..88f232a 100644 --- a/notes/rasterizing-triangles.md +++ b/notes/rasterizing-triangles.md @@ -31,7 +31,7 @@ In order to figure out how build this rasterizer [I reached out to the internet] From this comment you can see that it is trivial to calculate to calculate the barycentric coordinates of the triangle from the edge function. You simply need to divide the the calculated edge function value by the area of parallelogram. Now what is the area of triangle? Well this is where some [more research](https://www.scratchapixel.com/lessons/3d-basic-rendering/ray-tracing-rendering-a-triangle/barycentric-coordinates) online helped. If the edge function defines the area of a parallelogram (2 times the area of the triangle) of `(X,Y)->(X+dX,Y+dY)` and `(X,Y)->(x,y)`, and we calculate three edge function values (one for each edge), then we have 2 times the area of each of the sub triangles that are defined by our point. -![Triangle barycentric coordinates from scratchpixel tutorial](https://www.scratchapixel.com/images/ray-triangle/barycentric.png?) +![Triangle barycentric coordinates from scratchpixel tutorial](https://www.scratchapixel.com/images/ray-triangle/barycentric.png) From this its trivial to see that we can calculate 2 times the area of the triangle just by adding up all the individual areas of the sub triangles (I used triangles here, but really we are adding the area of sub parallelograms to get the area of the whole parallelogram that has 2 times the area of the triangle we are drawing), that is adding the value of all the edge functions together. From this we can see to linear interpolate any value on the triangle we can use the following equation -- cgit v1.2.3