About Social Code
summaryrefslogtreecommitdiff
path: root/notes
diff options
context:
space:
mode:
authorLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-01 09:52:00 +0000
committerLucas Fryzek <lucas.fryzek@fryzekconcepts.com>2025-03-01 09:52:00 +0000
commit4e2a79ed3db2067c6ef3631ca21e3c7d27b9fc55 (patch)
treec8bcb890c942e5d608388da8f08b5c6d6735ef8f /notes
parent610738e48ee62e4ca91921396a5f1088c8561ccb (diff)
Fix image link in rasterizing triangles
Diffstat (limited to 'notes')
-rw-r--r--notes/rasterizing-triangles.md2
1 files changed, 1 insertions, 1 deletions
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