Difference between revisions of "3D Fundamentals Tutorial 5"
From Chilipedia
(→Video) |
(→Video) |
||
Line 4: | Line 4: | ||
The tutorial video is on YouTube [https://www.youtube.com/watch?v=9A5TVh6kPLA here]. | The tutorial video is on YouTube [https://www.youtube.com/watch?v=9A5TVh6kPLA here]. | ||
− | * Why do we want to draw triangles? [https://youtu.be/ | + | * Why do we want to draw triangles? [https://youtu.be/9A5TVh6kPLA?t=0m20s 0:20] |
− | * How to render a 3D polygon on a 2D screen [https://youtu.be/ | + | * How to render a 3D polygon on a 2D screen [https://youtu.be/9A5TVh6kPLA?t=2m49s 2:49] |
− | * Drawing a simple triangle [https://youtu.be/ | + | * Drawing a simple triangle [https://youtu.be/9A5TVh6kPLA?t=4m48s 4:48] |
− | * Rasterization rules (we follow Direct3D 10/11+) [https://youtu.be/ | + | * Rasterization rules (we follow Direct3D 10/11+) [https://youtu.be/9A5TVh6kPLA?t=9m47s 9:47] |
− | * Coding it up, adding <code>DrawTriangle()</code> functions in <code>Graphics.h</code> [https://youtu.be/ | + | * Coding it up, adding <code>DrawTriangle()</code> functions in <code>Graphics.h</code> [https://youtu.be/9A5TVh6kPLA?t=13m33s 13:33] |
− | * Math for splitting vertices of a general triangle [https://youtu.be/ | + | * Math for splitting vertices of a general triangle [https://youtu.be/9A5TVh6kPLA?t=15m39s 15:39] |
− | * Determening Major Left or Major Right trait of splitted triangles [https://youtu.be/ | + | * Determening Major Left or Major Right trait of splitted triangles [https://youtu.be/9A5TVh6kPLA?t=19m19s 19:19] |
− | * Drawing Flat Top and Flat Bottom triangles [https://youtu.be/ | + | * Drawing Flat Top and Flat Bottom triangles [https://youtu.be/9A5TVh6kPLA?t=20m13s 20:13] |
− | * Deign of outer and inner loop for drawing along scanlines [https://youtu.be/ | + | * Deign of outer and inner loop for drawing along scanlines [https://youtu.be/9A5TVh6kPLA?t=24m15s 24:15] |
− | * Test drawing our cube with triangles instead of lines [https://youtu.be/ | + | * Test drawing our cube with triangles instead of lines [https://youtu.be/9A5TVh6kPLA?t=26m50s 26:50] |
== Downloads == | == Downloads == |
Revision as of 03:11, 4 May 2020
In this video we find out what's the deal with triangles, and how we deal with the pointy little fuckers and make them our bitch.
Video
The tutorial video is on YouTube here.
- Why do we want to draw triangles? 0:20
- How to render a 3D polygon on a 2D screen 2:49
- Drawing a simple triangle 4:48
- Rasterization rules (we follow Direct3D 10/11+) 9:47
- Coding it up, adding
DrawTriangle()
functions inGraphics.h
13:33 - Math for splitting vertices of a general triangle 15:39
- Determening Major Left or Major Right trait of splitted triangles 19:19
- Drawing Flat Top and Flat Bottom triangles 20:13
- Deign of outer and inner loop for drawing along scanlines 24:15
- Test drawing our cube with triangles instead of lines 26:50
Downloads
The GitHub repository for the tutorial code is here.