Rasterizer Project - Part 1: Getting started
dev.to·1w·
Discuss: DEV
Flag this post

Were making a Rasterizer folks, exciting really. I would like to credit: I will be using these resources in my journey in making this rasterizer. https://lazyfoo.net/tutorials/SDL/ https://haqr.eu/tinyrenderer/bresenham/

What is a Rasterizer? Its a part of the graphics pipeline that turns all that magical mathematical geometry, points lines and tirangles into colored pixels on a 2D image.

Everything you see in a rendered game or 3D scene comes down to rasteriztion. The program has to decide which pixels on the screen correspond to which parts of what triangles, what colour they should be (how bright etc etc).

So the basic idea is that you start with triangles defined by vertices in 3D space, you tr…

Similar Posts

Loading similar posts...