Voxelers / mcthings

A Python framework for creating 3D scenes in Minecraft and Minetest
Apache License 2.0
57 stars 10 forks source link

Learn Computer Graphics #126

Closed acs closed 3 years ago

acs commented 3 years ago

https://paroj.github.io/gltut/: This book is intended to teach you how to be a graphics programmer. OpenGL version 3.3. https://paroj.github.io/gltut/Basics/Intro%20Graphics%20and%20Rendering.html Great into to Graphics and Rendering! «The process of rasterization has several phases. These phases are ordered into a pipeline, where triangles enter from the top and a 2D image is filled in at the bottom.» «In rasterizers, all objects that you see are empty shells.»

acs commented 3 years ago

Done for a first iteration. For future reference, I have found that https://www.scratchapixel.com/index.php?redirect is a wonderful place to learn CG.